mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
25 lines
640 B
PHP
25 lines
640 B
PHP
<?php
|
|
/**
|
|
* EGroupware preferences password change without preferences rights
|
|
*
|
|
* @package preferences
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
$GLOBALS['egw_info'] = array(
|
|
'flags' => array(
|
|
'noheader' => True,
|
|
'nonavbar' => True,
|
|
'currentapp' => 'password',
|
|
)
|
|
);
|
|
include('../header.inc.php');
|
|
|
|
$GLOBALS['egw']->template = new Template(common::get_tpl_dir('preferences'));
|
|
translation::add_app('preferences');
|
|
ExecMethod('preferences.uipassword.change');
|
|
common::egw_footer();
|