diff --git a/preferences/inc/class.bosettings.inc.php b/preferences/inc/class.bosettings.inc.php index 5109fad56d..701dec08c6 100644 --- a/preferences/inc/class.bosettings.inc.php +++ b/preferences/inc/class.bosettings.inc.php @@ -232,7 +232,7 @@ 'function' => '_read', 'signature' => array(array(xmlrpcStruct,xmlrpcString,xmlrpcString,xmlrpcString)), 'docstring' => lang('Read prefs for the specified application.') - ) + ), 'write' => array( 'function' => 'process_array', 'signature' => array(array(xmlrpcStruct,xmlrpcStruct,xmlrpcStruct,xmlrpcStruct,xmlrpcString,xmlrpcString)), diff --git a/preferences/inc/class.uisettings.inc.php b/preferences/inc/class.uisettings.inc.php index 7dc791ae42..4c986eef9d 100755 --- a/preferences/inc/class.uisettings.inc.php +++ b/preferences/inc/class.uisettings.inc.php @@ -231,11 +231,11 @@ if(count($notifies)) // there have been notifies in the hook, we need to save in the session { $this->bo->save_session( - 'type' => $GLOBALS['type'], // save our state in the app-session - 'show_help' => $this->show_help, - 'prefix' => $this->prefix, - 'appname' => $_GET['appname'], // we use this to reset prefix on appname-change - 'notifies' => $notifies + $GLOBALS['type'], // save our state in the app-session + $this->show_help, + $this->prefix, + $_GET['appname'], // we use this to reset prefix on appname-change + $notifies ); //_debug_array($notifies); }