diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-31 17:06:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-31 17:06:10 +0000 |
commit | b4786ff0eeed2bc50d665e71bd18ecd5260304c1 (patch) | |
tree | fbf68db46c5eea78f16263bf639638571093fad3 /modules/search/search.module | |
parent | 730adaf7178fbf683e5f51a0d3d192edd1c423e5 (diff) | |
download | brdo-b4786ff0eeed2bc50d665e71bd18ecd5260304c1.tar.gz brdo-b4786ff0eeed2bc50d665e71bd18ecd5260304c1.tar.bz2 |
- Patch #495968 by Frando, moshe weitzman: added drupal_render() cache pattern. Start using it for blocks.
Diffstat (limited to 'modules/search/search.module')
-rw-r--r-- | modules/search/search.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 8c6e1933b..65dfb84e6 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -166,7 +166,7 @@ function search_permission() { function search_block_info() { $blocks['form']['info'] = t('Search form'); // Not worth caching. - $blocks['form']['cache'] = BLOCK_NO_CACHE; + $blocks['form']['cache'] = DRUPAL_NO_CACHE; return $blocks; } |