2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
2001-03-10 09:16:33 +01:00
|
|
|
/**************************************************************************\
|
2004-08-09 15:46:03 +02:00
|
|
|
* eGroupWare - preferences *
|
|
|
|
* http://www.egroupware.org *
|
2001-03-10 09:16:33 +01:00
|
|
|
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-03-10 09:16:33 +01:00
|
|
|
/* $Id$ */
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2005-07-09 21:07:16 +02:00
|
|
|
$GLOBALS['egw_info']['flags'] = array(
|
2001-03-10 09:16:33 +01:00
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'currentapp' => 'preferences'
|
|
|
|
);
|
|
|
|
include('../header.inc.php');
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2005-07-23 11:44:46 +02:00
|
|
|
$obj = CreateObject('preferences.uichangepassword');
|
|
|
|
$obj->index();
|
2001-08-31 18:32:05 +02:00
|
|
|
|
2005-07-23 11:44:46 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-04-17 18:46:14 +02:00
|
|
|
?>
|