From 06092df8b6c7e81e134df6d3a0254d9c0aa95a4a Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 20 Jan 2010 12:02:38 -0700 Subject: [PATCH] Bug #8831: Fix updating prefs --- horde/services/prefs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/services/prefs.php b/horde/services/prefs.php index ed7e9582f..422d0913f 100644 --- a/horde/services/prefs.php +++ b/horde/services/prefs.php @@ -46,7 +46,7 @@ $actionID = Horde_Util::getFormData('actionID'); /* Run prefs_ui init code, if available. */ if ($registry->hasAppMethod($app, 'prefsInit')) { - $result = $registry->callAppMethod($app, 'prefsInit', array('args' => array(($actionID == 'update_prefs') ? '' : $group))); + $result = $registry->callAppMethod($app, 'prefsInit', array('args' => array($group))); if (!empty($result)) { extract($result); } -- 2.11.0