summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-07-23 07:34:34 +0000
committerDries Buytaert <dries@buytaert.net>2008-07-23 07:34:34 +0000
commitaddc33123222f9382ae3c3638288a1d96c5dcec6 (patch)
treeee1598834032591e7e5e880c09e3adb21e4cc890
parentb305732e5d307a5d03b8177a5ccb5a7b58ce31b3 (diff)
downloadbrdo-addc33123222f9382ae3c3638288a1d96c5dcec6.tar.gz
brdo-addc33123222f9382ae3c3638288a1d96c5dcec6.tar.bz2
- Patch #286002 by cwgordon7: removed dead function module_iterate().
-rw-r--r--includes/module.inc9
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
*