diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-05-29 21:11:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-05-29 21:11:20 +0000 |
commit | 1a888395b95a9df13259e985a02db3c1e1404a8f (patch) | |
tree | 9ee82a74cc4bfcdfd3fdf0abbada3fe80c678133 | |
parent | 9c8e8f7c2788fa475ff79d5b278be814fab7980c (diff) | |
download | brdo-1a888395b95a9df13259e985a02db3c1e1404a8f.tar.gz brdo-1a888395b95a9df13259e985a02db3c1e1404a8f.tar.bz2 |
- Removed a few lines of dead code.
-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; |