diff options
-rw-r--r-- | includes/module.inc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/includes/module.inc b/includes/module.inc index 9033078c3..2843e5547 100644 --- a/includes/module.inc +++ b/includes/module.inc @@ -16,11 +16,6 @@ function module_invoke($name, $hook, $argument = "") { return function_exists($function) ? $function($argument) : $argument; } -// return true if module $name supports hook $hook, and false otherwise: -function module_is_hook($name, $hook) { - return function_exists($name ."_". $hook); -} - // return an array of module names (includes lazy module loading): function module_list() { static $list; |