diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-08-01 00:18:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-08-01 00:18:20 +0000 |
commit | c220873e15c384514eb08f2315490a9646eb07cf (patch) | |
tree | 3942ecc94100a420960c9d29f738b6899c7e526f /modules/simpletest/tests/theme_test.module | |
parent | 4037fa86db033e758a52642f602323cdd3e85015 (diff) | |
download | brdo-c220873e15c384514eb08f2315490a9646eb07cf.tar.gz brdo-c220873e15c384514eb08f2315490a9646eb07cf.tar.bz2 |
- Patch #866220 by andypost: URL parameter for theme_more_link() should not pass url().
Diffstat (limited to 'modules/simpletest/tests/theme_test.module')
-rw-r--r-- | modules/simpletest/tests/theme_test.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/theme_test.module b/modules/simpletest/tests/theme_test.module index d11705bea..ad22367b8 100644 --- a/modules/simpletest/tests/theme_test.module +++ b/modules/simpletest/tests/theme_test.module @@ -32,7 +32,7 @@ function theme_test_init() { // variable. We will use this later in theme_test_hook_init_page_callback() // to test that even when the theme system is initialized this early, it is // still capable of returning output and theming the page as a whole. - $GLOBALS['theme_test_output'] = theme('more_link', array('url' => url('user'), 'title' => 'Themed output generated in hook_init()')); + $GLOBALS['theme_test_output'] = theme('more_link', array('url' => 'user', 'title' => 'Themed output generated in hook_init()')); } /** |