summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/color/color.module7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/color/color.module b/modules/color/color.module
index 1a8414da2..0f27c99dc 100644
--- a/modules/color/color.module
+++ b/modules/color/color.module
@@ -115,10 +115,17 @@ function _color_page_alter(&$vars) {
* Retrieve the color.module info for a particular theme.
*/
function color_get_info($theme) {
+ static $theme_info = array();
+
+ if (isset($theme_info[$theme])) {
+ return $theme_info[$theme];
+ }
+
$path = drupal_get_path('theme', $theme);
$file = DRUPAL_ROOT . '/' . $path . '/color/color.inc';
if ($path && file_exists($file)) {
include $file;
+ $theme_info[$theme] = $info;
return $info;
}
}