There should be information about which filter is provided by which module at /admin/settings/filters/1.
At the moment I don't see any easy method to check that (if you have many of them).
You can search for the string like 'URL filter' in all your files (but not via FTP), so it not make sense.

Comments

kenorb’s picture

Status: Active » Needs review

Patch:

    $form['filters'][$id] = array('#type' => 'checkbox',
      '#title' => $filter->name, // line 394
      '#default_value' => isset($enabled[$id]),
      '#description' => module_invoke($filter->module, 'filter', 'description', $filter->delta),
    );

Change:

      '#title' => $filter->name,

into:

      '#title' => "$filter->name (provided by $filter->module)",
      '#title' => $filter->name . t(' Provided by %module_name', array('%module_name' => $filter->module)),
      '#title' => $filter->name . ' '. t('Provided by %module_name', array('%module_name' => $filter->module)),
      '#title' => $filter->name . t(' ') . t('(Provided by %module_name)', array('%module_name' => $filter->module)),
      '#title' => $filter->name . t(' ') . t('(Provided by %module_name module)', array('%module_name' => $filter->module)),

You can choose which one is correct:)
I don't know which one is in the standard one.

kenorb’s picture

Now it's looks better and know which module should I blame:)

URL filter (Provided by filter)

#362629: URL Filter doesn't make links if the chars are international
#115142: Input Filter not stripping allowed tags

kenorb’s picture

Title: There should be information about which filter is provided by which module » Information on filter list which filter is provided by which module
sun’s picture

Title: Information on filter list which filter is provided by which module » Display name of module providing a filter
Version: 6.x-dev » 7.x-dev
Category: feature » task
Status: Needs review » Needs work
Issue tags: +Needs usability review

Not sure about this. UX team?

sun.core’s picture

Version: 7.x-dev » 8.x-dev
Bojhan’s picture

Actually this sounds interesting, I wonder where this shows up though? Also this is not really a standard?

Wim Leers’s picture

Category: Task » Feature request
Issue summary: View changes
Status: Needs work » Closed (works as designed)

I think this is a <=1% case. Usually, a filter is provided by a module that does nothing else except providing that filter, so it's already easy to find the corresponding module. Especially now that D8 has a type-to-search field on the modules page.