2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
2001-03-10 09:16:33 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - preferences *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* 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
|
|
|
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
2001-03-10 09:16:33 +01:00
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'currentapp' => 'preferences'
|
|
|
|
);
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-03-10 09:16:33 +01:00
|
|
|
include('../header.inc.php');
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2002-04-30 00:25:02 +02:00
|
|
|
$n_passwd = get_var('n_passwd',Array('POST'));
|
|
|
|
$n_passwd_2 = get_var('n_passwd_2',Array('POST'));
|
2001-08-31 18:32:05 +02:00
|
|
|
|
|
|
|
if (! $GLOBALS['phpgw']->acl->check('changepassword', 1))
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2001-08-31 18:32:05 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php/'));
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-18 22:34:11 +02:00
|
|
|
}
|
2000-12-13 11:26:44 +01:00
|
|
|
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_file(array(
|
2001-04-17 20:09:13 +02:00
|
|
|
'form' => 'changepassword.tpl'
|
|
|
|
));
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_changepassword',lang('Change your password'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_enter_password',lang('Enter your new password'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_reenter_password',lang('Re-enter your password'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_change',lang('Change'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('form_action',$GLOBALS['phpgw']->link('/preferences/changepassword.php'));
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2002-04-30 00:25:02 +02:00
|
|
|
if($GLOBALS['phpgw_info']['server']['auth_type'] != 'ldap')
|
2001-04-17 20:09:13 +02:00
|
|
|
{
|
2002-05-02 02:08:16 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_var('sql_message',lang('note: This feature might *not* change your email password. This may '
|
2001-07-18 22:34:11 +02:00
|
|
|
. 'need to be done manually.'));
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2001-04-17 20:09:13 +02:00
|
|
|
|
2002-04-30 00:25:02 +02:00
|
|
|
if(get_var('submit',Array('POST')))
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2002-04-30 00:25:02 +02:00
|
|
|
if($n_passwd != $n_passwd_2)
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2001-04-17 20:09:13 +02:00
|
|
|
$errors[] = lang('The two passwords are not the same');
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2002-04-30 00:25:02 +02:00
|
|
|
if(! $n_passwd)
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2001-04-17 20:09:13 +02:00
|
|
|
$errors[] = lang('You must enter a password');
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2002-04-30 00:25:02 +02:00
|
|
|
if(is_array($errors))
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
|
|
|
$GLOBALS['phpgw']->template->set_var('messages',$GLOBALS['phpgw']->common->error_list($errors));
|
|
|
|
$GLOBALS['phpgw']->template->pfp('out','form');
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-08-31 18:32:05 +02:00
|
|
|
$o_passwd = $GLOBALS['phpgw_info']['user']['passwd'];
|
|
|
|
$passwd_changed = $GLOBALS['phpgw']->auth->change_password($o_passwd, $n_passwd);
|
2002-04-30 00:25:02 +02:00
|
|
|
if(!$passwd_changed)
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
|
|
|
// This need to be changed to show a different message based on the result
|
2001-08-31 18:32:05 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php','cd=38'));
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw_info']['user']['passwd'] = $GLOBALS['phpgw']->auth->change_password($o_passwd, $n_passwd);
|
2002-05-02 01:55:51 +02:00
|
|
|
$GLOBALS['hook_values']['account_id'] = $GLOBALS['phpgw_info']['user']['account_id'];
|
|
|
|
$GLOBALS['hook_values']['old_passwd'] = $o_passwd;
|
|
|
|
$GLOBALS['hook_values']['new_passwd'] = $n_passwd;
|
|
|
|
$GLOBALS['phpgw']->hooks->process('changepassword');
|
2001-08-31 18:32:05 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php','cd=18'));
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2001-04-17 20:09:13 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2001-04-17 20:09:13 +02:00
|
|
|
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->template->pfp('out','form');
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2001-04-17 18:46:14 +02:00
|
|
|
?>
|