mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-05 04:49:44 +01:00
Fix glaring syntax errors - oops
This commit is contained in:
parent
2c2bc0beb3
commit
ab4b6241e9
@ -232,7 +232,7 @@
|
|||||||
'function' => '_read',
|
'function' => '_read',
|
||||||
'signature' => array(array(xmlrpcStruct,xmlrpcString,xmlrpcString,xmlrpcString)),
|
'signature' => array(array(xmlrpcStruct,xmlrpcString,xmlrpcString,xmlrpcString)),
|
||||||
'docstring' => lang('Read prefs for the specified application.')
|
'docstring' => lang('Read prefs for the specified application.')
|
||||||
)
|
),
|
||||||
'write' => array(
|
'write' => array(
|
||||||
'function' => 'process_array',
|
'function' => 'process_array',
|
||||||
'signature' => array(array(xmlrpcStruct,xmlrpcStruct,xmlrpcStruct,xmlrpcStruct,xmlrpcString,xmlrpcString)),
|
'signature' => array(array(xmlrpcStruct,xmlrpcStruct,xmlrpcStruct,xmlrpcStruct,xmlrpcString,xmlrpcString)),
|
||||||
|
@ -231,11 +231,11 @@
|
|||||||
if(count($notifies)) // there have been notifies in the hook, we need to save in the session
|
if(count($notifies)) // there have been notifies in the hook, we need to save in the session
|
||||||
{
|
{
|
||||||
$this->bo->save_session(
|
$this->bo->save_session(
|
||||||
'type' => $GLOBALS['type'], // save our state in the app-session
|
$GLOBALS['type'], // save our state in the app-session
|
||||||
'show_help' => $this->show_help,
|
$this->show_help,
|
||||||
'prefix' => $this->prefix,
|
$this->prefix,
|
||||||
'appname' => $_GET['appname'], // we use this to reset prefix on appname-change
|
$_GET['appname'], // we use this to reset prefix on appname-change
|
||||||
'notifies' => $notifies
|
$notifies
|
||||||
);
|
);
|
||||||
//_debug_array($notifies);
|
//_debug_array($notifies);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user