diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-27 21:59:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-27 21:59:32 +0000 |
commit | 3ec762b2ab9becbedb402e72da987de288a9f29d (patch) | |
tree | 5e3a7eb8ddf72fce0988ee04f0df7887d1413e85 /modules/system/system.module | |
parent | bfa2f8e980f1f1ad44644ed5f88bae65f1cb7e7f (diff) | |
download | brdo-3ec762b2ab9becbedb402e72da987de288a9f29d.tar.gz brdo-3ec762b2ab9becbedb402e72da987de288a9f29d.tar.bz2 |
- Patch #100249 by webchick: properly initialize variable.
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 b80f14262..a8ddbff38 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -2178,6 +2178,8 @@ function system_admin_compact_mode() { */ function theme_admin_page($blocks) { $stripe = 0; + $container = array(); + foreach ($blocks as $block) { if ($block_output = theme('admin_block', $block)) { if (!$block['position']) { |