diff options
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')) { |