diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-12-09 07:16:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-12-09 07:16:10 +0000 |
commit | c50651f7fb348ec2dc6e29cdf462f22d64045002 (patch) | |
tree | 55f4e31257b073ab98401ecdd74a1a903c855ebb /modules/simpletest/tests | |
parent | 1ffa4fe38bb6b3612092cc65897ab30e0bc9954f (diff) | |
download | brdo-c50651f7fb348ec2dc6e29cdf462f22d64045002.tar.gz brdo-c50651f7fb348ec2dc6e29cdf462f22d64045002.tar.bz2 |
- Patch #340557 by Dave Reid: use static caching in drupal_is_front_page().
Diffstat (limited to 'modules/simpletest/tests')
-rw-r--r-- | modules/simpletest/tests/system_test.module | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/simpletest/tests/system_test.module b/modules/simpletest/tests/system_test.module index fadc05e3c..dfe25bbf8 100644 --- a/modules/simpletest/tests/system_test.module +++ b/modules/simpletest/tests/system_test.module @@ -150,6 +150,16 @@ function system_test_boot() { } /** + * Implementation of hook_init(). + */ +function system_test_init() { + // Used by FrontPageTestCase to get the results of drupal_is_front_page(). + if (variable_get('front_page_output', 0) && drupal_is_front_page()) { + drupal_set_message(t('On front page.')); + } +} + +/** * Implementation of hook_exit(). */ function system_test_exit() { |