diff options
author | David Rothstein <drothstein@gmail.com> | 2012-06-28 00:49:18 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2012-06-28 00:49:18 -0400 |
commit | 46cf23289a03b1c6379c75ec9d3e4d27d76a6ea0 (patch) | |
tree | 8578309d283b0ca9f98f669cb0b514ae562f03b2 /modules/simpletest/tests/theme_test.module | |
parent | e1f366679ca13d2faf6d0d930d4c9fca92db1a30 (diff) | |
download | brdo-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.module | 2 |
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; } |