diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-07 07:16:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-07 07:16:11 +0000 |
commit | f9de04c93f732dd4fc107f5ae2dd470d7fbd7cf8 (patch) | |
tree | 787f7393e4fb10a3f92cca379545022c3b76fd32 /modules/node/node.module | |
parent | 58d662907cb6ce5b62a4d87ad7011cb6ba9fd685 (diff) | |
download | brdo-f9de04c93f732dd4fc107f5ae2dd470d7fbd7cf8.tar.gz brdo-f9de04c93f732dd4fc107f5ae2dd470d7fbd7cf8.tar.bz2 |
- Fixed bug in node_search of node.module.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index a9686bf84..3f81dc87e 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -213,7 +213,7 @@ function node_admin_save($edit) { } } -function node_search() { +function node_module_find() { global $REQUEST_URI; foreach (module_list() as $name) { @@ -262,7 +262,7 @@ function node_admin() { print node_help(); break; case "search": - print node_search($id); + print node_module_find($id); print search_data($keys, $type); break; case "status": |