Skip to content
Snippets Groups Projects
Commit c14ef09c authored by Dave Reid's avatar Dave Reid
Browse files

Issue #1085092 by pfrenssen: Fixed module_list() is called twice in feeds_alter().

parent 5cf45422
No related branches found
No related tags found
No related merge requests found
...@@ -898,7 +898,6 @@ function feeds_alter($type, &$data) { ...@@ -898,7 +898,6 @@ function feeds_alter($type, &$data) {
array_shift($additional_args); array_shift($additional_args);
$args = array_merge($args, $additional_args); $args = array_merge($args, $additional_args);
$list = module_list();
foreach (module_list() as $module) { foreach (module_list() as $module) {
$function = $module .'_'. $type .'_alter'; $function = $module .'_'. $type .'_alter';
if (function_exists($function)) { if (function_exists($function)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment