From 03fa966c1f6de932d85ad77f91a288698620f031 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 21 Aug 2004 10:16:13 +0000 Subject: - Patch #9576 by TDobes: bugfix: fixed bug in recent theme system changes. --- modules/system/system.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/system/system.module') diff --git a/modules/system/system.module b/modules/system/system.module index 96d2b14cf..5508f868d 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -633,7 +633,7 @@ function system_theme_settings() { $function = $themes[$key]->prefix .'_settings'; if (function_exists($function)) { $group = $function(); - if (strpos($themes[$key]->description, '.theme')) { + if (strpos($themes[$key]->description, '.theme') || ($themes[$key]->description == '')) { $form .= form_group(t('Theme-specific settings'), $group, t('These settings only exist for the %theme theme and all the styles based on it.', array('%theme' => $themes[$key]->prefix))); } else { -- cgit v1.2.3