diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-06-08 14:13:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-06-08 14:13:11 +0000 |
commit | 92665ec06bf676d0dc9270b4535df341428addc3 (patch) | |
tree | 68c6bcd86fd0bf34cb4b32cb4ca0350c7ada8b8f /modules/system.module | |
parent | e6096b603ab3b30223f7e102f19e12662b9508bf (diff) | |
download | brdo-92665ec06bf676d0dc9270b4535df341428addc3.tar.gz brdo-92665ec06bf676d0dc9270b4535df341428addc3.tar.bz2 |
- Bugfix: clicking "help" on the "site configuration" didn't show any help.
Diffstat (limited to 'modules/system.module')
-rw-r--r-- | modules/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system.module b/modules/system.module index a557896ea..55bdfedba 100644 --- a/modules/system.module +++ b/modules/system.module @@ -273,7 +273,7 @@ function system_admin() { switch ($op) { case "help": - system_help(); + print system_help(); break; case "Save module settings": db_query("UPDATE system SET status = '0' WHERE type = 'module'"); |