diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2012-08-07 12:18:45 -0700 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2012-08-07 12:18:45 -0700 |
commit | 24682ad5d72e2c7ceeb6473d75a0c95979809a08 (patch) | |
tree | 2f6c398027313a5f848d6cca2dffacd50146b721 /includes | |
parent | f4aa23a2ccddb6a4330cd7a81fea2d70a6da7b96 (diff) | |
download | brdo-24682ad5d72e2c7ceeb6473d75a0c95979809a08.tar.gz brdo-24682ad5d72e2c7ceeb6473d75a0c95979809a08.tar.bz2 |
Issue #1708722 by David_Rothstein: Fixed Call to undefined function drupal_find_base_themes() in drupal-7.15/includes/module.inc on line 184.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/module.inc | 1 |
1 files changed, 1 insertions, 0 deletions
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)) { |