diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-04-07 16:35:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-04-07 16:35:03 +0000 |
commit | f3a8fa9ea8cc3e807f066c43e6ab240c204941ee (patch) | |
tree | 1fde4a9b48e241ec81c08e986eae7bad5cf9d78e /modules/system/system.module | |
parent | dde5c67ba041dc65588377808b1943fdd3b57bf6 (diff) | |
download | brdo-f3a8fa9ea8cc3e807f066c43e6ab240c204941ee.tar.gz brdo-f3a8fa9ea8cc3e807f066c43e6ab240c204941ee.tar.bz2 |
- Patch #763444 by jpmckinney: user_cookie_save() has a weird/awkward function signature.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index eea5e90f0..f2f06bfe7 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -2721,7 +2721,7 @@ function system_admin_compact_mode() { * Valid values are 'on' and 'off'. */ function system_admin_compact_page($mode = 'off') { - user_cookie_save(array('admin_compact_mode' => ($mode == 'on')), array('admin_compact_mode')); + user_cookie_save(array('admin_compact_mode' => ($mode == 'on'))); drupal_goto(); } |