Fix glaring syntax errors - oops

This commit is contained in:
Miles Lott 2005-07-23 11:19:29 +00:00
parent 2c2bc0beb3
commit ab4b6241e9
2 changed files with 6 additions and 6 deletions

View File

@ -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)),

View File

@ -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);
}