2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
2008-05-10 14:02:49 +02:00
|
|
|
/**
|
|
|
|
* eGroupWare Addressbook
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @package addressbook
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2001-07-08 15:55:24 +02:00
|
|
|
|
2008-05-10 14:02:49 +02:00
|
|
|
$GLOBALS['egw_info'] = array(
|
|
|
|
'flags' => array(
|
|
|
|
'currentapp' => 'addressbook',
|
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True
|
|
|
|
));
|
|
|
|
include('../header.inc.php');
|
2001-02-10 13:56:49 +01:00
|
|
|
|
2008-05-10 14:02:49 +02:00
|
|
|
// check if we have an advanced search and reset it in case
|
|
|
|
$old_state = $GLOBALS['egw']->session->appsession('index','addressbook');
|
|
|
|
if ($old_state['advanced_search'])
|
|
|
|
{
|
|
|
|
unset($old_state['advanced_search']);
|
|
|
|
$GLOBALS['egw']->session->appsession('index','addressbook',$old_state);
|
|
|
|
}
|
|
|
|
$GLOBALS['egw']->redirect_link('/index.php','menuaction=addressbook.addressbook_ui.index');
|