From: Michael M Slusarz Date: Wed, 20 Jan 2010 19:02:38 +0000 (-0700) Subject: Bug #8831: Fix updating prefs X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=06092df8b6c7e81e134df6d3a0254d9c0aa95a4a;p=horde.git Bug #8831: Fix updating prefs --- 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); }