diff options
-rw-r--r-- | includes/module.inc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/includes/module.inc b/includes/module.inc index 568a6da18..79b12c3d7 100644 --- a/includes/module.inc +++ b/includes/module.inc @@ -16,15 +16,6 @@ function module_load_all() { } /** - * Call a function repeatedly with each module in turn as an argument. - */ -function module_iterate($function, $argument = '') { - foreach (module_list() as $name) { - $function($name, $argument); - } -} - -/** * Collect a list of all loaded modules. During the bootstrap, return only * vital modules. See bootstrap.inc * |