diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-28 19:56:27 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-28 19:56:27 +0000 |
commit | 4bdf24ea52a0e661d84a13ec78a868cb50c46cc5 (patch) | |
tree | a7c9a3c02f7fe02481e6cffe5459afdc9f6a91ea /modules/system/system.module | |
parent | bf28630a5e46d28d66d604ceea80f53c060e647b (diff) | |
download | brdo-4bdf24ea52a0e661d84a13ec78a868cb50c46cc5.tar.gz brdo-4bdf24ea52a0e661d84a13ec78a868cb50c46cc5.tar.bz2 |
#210219 by htalvitie, yched: initialize block caching properties properly on install (and update bugos RC2 sites as well)
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 1f1cac291..a982f2e87 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -580,6 +580,8 @@ function system_block($op = 'list', $delta = 0, $edit = NULL) { $blocks[0] = array( 'info' => t('Powered by Drupal'), 'weight' => '10', + // Not worth caching. + 'cache' => BLOCK_NO_CACHE, ); return $blocks; case 'configure': |