diff options
-rw-r--r-- | modules/system.module | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
2 files changed, 2 insertions, 2 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')) { diff --git a/modules/system/system.module b/modules/system/system.module index 52b922e08..ee5015992 100644 --- a/modules/system/system.module +++ b/modules/system/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')) { |