From 24682ad5d72e2c7ceeb6473d75a0c95979809a08 Mon Sep 17 00:00:00 2001 From: webchick Date: Tue, 7 Aug 2012 12:18:45 -0700 Subject: Issue #1708722 by David_Rothstein: Fixed Call to undefined function drupal_find_base_themes() in drupal-7.15/includes/module.inc on line 184. --- includes/module.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/module.inc b/includes/module.inc index 28bca2350..c07ec632a 100644 --- a/includes/module.inc +++ b/includes/module.inc @@ -181,6 +181,7 @@ function system_list($type) { foreach ($lists['theme'] as $key => $theme) { if (!empty($theme->info['base theme'])) { // Make a list of the theme's base themes. + require_once DRUPAL_ROOT . '/includes/theme.inc'; $lists['theme'][$key]->base_themes = drupal_find_base_themes($lists['theme'], $key); // Don't proceed if there was a problem with the root base theme. if (!current($lists['theme'][$key]->base_themes)) { -- cgit v1.2.3