diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-21 06:34:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-21 06:34:59 +0000 |
commit | 6696028a759b50e5551f471e4d71443744201da4 (patch) | |
tree | dc05c4df2b391cf3366fe243d77bff08d97fc6e0 /modules/system.module | |
parent | 5390f182c3d1057a29f23a67835aa31f59eea2b9 (diff) | |
download | brdo-6696028a759b50e5551f471e4d71443744201da4.tar.gz brdo-6696028a759b50e5551f471e4d71443744201da4.tar.bz2 |
- Patch by TDobes: bugfix: fixed a typo.
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 52b922e08..ee5015992 100644 --- a/modules/system.module +++ b/modules/system.module @@ -625,7 +625,7 @@ function system_theme_settings() { if ($key) { // Template-specific settings - $function = function_exists($themes[$key]->prefix .'_settings'); + $function = $themes[$key]->prefix .'_settings'; if (function_exists($function)) { $group = $function(); if (strpos($themes[$key]->description, '.theme')) { |