summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/theme_test.module
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2012-06-28 00:49:18 -0400
committerDavid Rothstein <drothstein@gmail.com>2012-06-28 00:49:18 -0400
commit46cf23289a03b1c6379c75ec9d3e4d27d76a6ea0 (patch)
tree8578309d283b0ca9f98f669cb0b514ae562f03b2 /modules/simpletest/tests/theme_test.module
parente1f366679ca13d2faf6d0d930d4c9fca92db1a30 (diff)
downloadbrdo-46cf23289a03b1c6379c75ec9d3e4d27d76a6ea0.tar.gz
brdo-46cf23289a03b1c6379c75ec9d3e4d27d76a6ea0.tar.bz2
Issue #761608 by JohnAlbin, effulgentsia: Fixed Missing theme settings values because list_themes() has inconsistent theme object data.
Diffstat (limited to 'modules/simpletest/tests/theme_test.module')
-rw-r--r--modules/simpletest/tests/theme_test.module2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/simpletest/tests/theme_test.module b/modules/simpletest/tests/theme_test.module
index a9bd2ad24..61a12bb70 100644
--- a/modules/simpletest/tests/theme_test.module
+++ b/modules/simpletest/tests/theme_test.module
@@ -25,6 +25,8 @@ function theme_test_theme($existing, $type, $theme, $path) {
*/
function theme_test_system_theme_info() {
$themes['test_theme'] = drupal_get_path('module', 'theme_test') . '/themes/test_theme/test_theme.info';
+ $themes['test_basetheme'] = drupal_get_path('module', 'theme_test') . '/themes/test_basetheme/test_basetheme.info';
+ $themes['test_subtheme'] = drupal_get_path('module', 'theme_test') . '/themes/test_subtheme/test_subtheme.info';
return $themes;
}