mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
29 lines
739 B
PHP
Executable File
29 lines
739 B
PHP
Executable File
<?php
|
|
/**
|
|
* eGroupWare Addressbook
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @package addressbook
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
use EGroupware\Api;
|
|
|
|
$GLOBALS['egw_info'] = array(
|
|
'flags' => array(
|
|
'currentapp' => 'addressbook',
|
|
'noheader' => True,
|
|
'nonavbar' => True
|
|
));
|
|
include('../header.inc.php');
|
|
|
|
// check if we have an advanced search and reset it in case
|
|
$old_state = Api\Cache::getSession('addressbook', 'index');
|
|
if ($old_state['advanced_search'])
|
|
{
|
|
unset($old_state['advanced_search']);
|
|
Api\Cache::setSession('addressbook', 'index', $old_state);
|
|
}
|
|
Api\Egw::redirect_link('/index.php','menuaction=addressbook.addressbook_ui.index');
|