* 'ACTION' - (string) The AJAX action identifier.
*
* Reserved 'ACTION' strings:
- * 'LogOut' - Logs user out of Horde.
+ * 'logOut' - Logs user out of Horde.
*
* Copyright 2010 The Horde Project (http://www.horde.org/)
*
} catch (Horde_Exception $e) {
/* Handle session timeouts when they come from an AJAX request. */
if (($e->getCode() == Horde_Registry::AUTH_FAILURE) &&
- ($action != 'LogOut')) {
+ ($action != 'logOut')) {
$ajax = Horde_Ajax::getInstance($app);
$GLOBALS['notification']->push(str_replace('&', '&', Horde_Auth::getLogoutUrl(array('reason' => Horde_Auth::REASON_SESSION))), 'horde.ajaxtimeout', array('content.raw'));
Horde::sendHTTPResponse(Horde::prepareResponse(null, $ajax->notify), $ajax->responseType());