mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
* Admin: fix fatal error in admin >> bulk password reset
This commit is contained in:
parent
44595fe931
commit
89c02707e9
@ -5,7 +5,7 @@
|
||||
* @link http://www.egroupware.org
|
||||
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @package admin
|
||||
* @copyright (c) 2011 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @copyright (c) 2011-14 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||
* @version $Id$
|
||||
*/
|
||||
@ -54,8 +54,8 @@ class admin_passwordreset
|
||||
/**
|
||||
* Reset passwords
|
||||
*
|
||||
* @param array $content=null
|
||||
* @param string $msg=''
|
||||
* @param array $content =null
|
||||
* @param string $msg =''
|
||||
*/
|
||||
function index(array $content=null, $msg='')
|
||||
{
|
||||
@ -105,6 +105,7 @@ class admin_passwordreset
|
||||
}
|
||||
$change_pw = $content['random_pw'] || $content['hash'] && $content['hash'] != $current_hash;
|
||||
$changed = array();
|
||||
$emailadmin = null;
|
||||
foreach($content['users'] as $account_id)
|
||||
{
|
||||
if (($account = $GLOBALS['egw']->accounts->read($account_id)))
|
||||
@ -156,8 +157,12 @@ class admin_passwordreset
|
||||
{
|
||||
if (!isset($emailadmin))
|
||||
{
|
||||
$emailadmin = new emailadmin_bo();
|
||||
$domain = $GLOBALS['egw_info']['server']['mail_suffix'];
|
||||
$emailadmin = emailadmin_account::get_default();
|
||||
if (!emailadmin_account::is_multiple($emailadmin))
|
||||
{
|
||||
$msg = lang('No default account found!');
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (($userData = $emailadmin->getUserData ($account_id)))
|
||||
{
|
||||
@ -171,11 +176,11 @@ class admin_passwordreset
|
||||
}
|
||||
if (strpos($content['mail']['domain'], '.') !== false)
|
||||
{
|
||||
$userData['mailLocalAddress'] = preg_replace('/@'.preg_quote($domain).'$/', '@'.$content['mail']['domain'], $userData['mailLocalAddress']);
|
||||
$userData['mailLocalAddress'] = preg_replace('/@'.preg_quote($emailadmin->acc_domain).'$/', '@'.$content['mail']['domain'], $userData['mailLocalAddress']);
|
||||
|
||||
foreach($userData['mailAlternateAddress'] as &$alias)
|
||||
{
|
||||
$alias = preg_replace('/@'.preg_quote($domain).'$/', '@'.$content['mail']['domain'], $alias);
|
||||
$alias = preg_replace('/@'.preg_quote($emailadmin->acc_domain).'$/', '@'.$content['mail']['domain'], $alias);
|
||||
}
|
||||
}
|
||||
$emailadmin->saveUserData($account_id, $userData);
|
||||
@ -215,6 +220,7 @@ class admin_passwordreset
|
||||
}
|
||||
catch (phpmailerException $e)
|
||||
{
|
||||
unset ($e);
|
||||
$msg .= lang('Notifying account "%1" %2 failed!',$account['account_lid'],$account['account_email']).
|
||||
': '.strip_tags(str_replace('<p>',"\n",$send->ErrorInfo))."\n";
|
||||
}
|
||||
@ -247,7 +253,7 @@ class admin_passwordreset
|
||||
|
||||
$GLOBALS['egw_info']['flags']['app_header'] = lang('Bulk password reset');
|
||||
|
||||
$tmpl = new etemplate('admin.passwordreset');
|
||||
$tmpl = new etemplate_new('admin.passwordreset');
|
||||
$tmpl->exec('admin.admin_passwordreset.index',$content,$sel_options,$readonlys,array(
|
||||
'changed' => $changed,
|
||||
));
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- $Id$ -->
|
||||
<overlay>
|
||||
<template id="admin.passwordreset" template="" lang="" group="0" version="1.9.001">
|
||||
<template id="admin.passwordreset" template="" lang="" group="0" version="14.1">
|
||||
<grid>
|
||||
<columns>
|
||||
<column/>
|
||||
@ -9,11 +9,6 @@
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row disabled="!@msg">
|
||||
<description id="msg" span="all" class="redItalic"/>
|
||||
<description/>
|
||||
<description/>
|
||||
</row>
|
||||
<row>
|
||||
<description value="Select users"/>
|
||||
<description/>
|
||||
@ -32,7 +27,7 @@
|
||||
<menulist>
|
||||
<menupopup type="select-bool" label="Can change password" id="changepassword" onchange="var mustchange=document.getElementById(form::name('mustchangepassword')); if (this.value=='0' && mustchange.value) mustchange.value='0';" options="Leave unchanged"/>
|
||||
</menulist>
|
||||
<hbox options="0,0">
|
||||
<hbox>
|
||||
<menulist>
|
||||
<menupopup label="Change password hash to" id="hash" options="Leave unchanged"/>
|
||||
</menulist>
|
||||
@ -52,8 +47,8 @@
|
||||
<row valign="top">
|
||||
<groupbox>
|
||||
<caption label="Notification mail"/>
|
||||
<textbox blur="Subject" id="subject" size="64"/>
|
||||
<textbox multiline="true" id="body" rows="15" cols="64"/>
|
||||
<textbox blur="Subject" id="subject" size="64" class="et2_fullWidth"/>
|
||||
<textbox multiline="true" id="body" rows="15" cols="64" class="et2_fullWidth"/>
|
||||
</groupbox>
|
||||
<vbox>
|
||||
<description value="Available placeholders" class="gray"/>
|
||||
|
Loading…
Reference in New Issue
Block a user