egroupware_official/preferences/changepassword.php

27 lines
1.0 KiB
PHP
Raw Normal View History

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
$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
$obj = CreateObject('preferences.uichangepassword');
$obj->index();
2001-08-31 18:32:05 +02:00
$GLOBALS['phpgw']->common->phpgw_footer();
?>