mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-06 16:53:34 +02:00
feature 1668, user manager redesign: ability to add a new user (call to pwg.users.add through AJAX)
Move the "send connection settings" code to function register_user (avoid code duplication). git-svn-id: http://piwigo.org/svn/trunk@25237 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -3561,7 +3561,24 @@ SELECT user_id, group_id
|
||||
*/
|
||||
function ws_users_add($params, &$service)
|
||||
{
|
||||
$user_id = register_user($params['username'], $params['password'], $params['email'], false, $errors);
|
||||
global $conf;
|
||||
|
||||
if ($conf['double_password_type_in_admin'])
|
||||
{
|
||||
if ($params['password'] != $params['password_confirm'])
|
||||
{
|
||||
return new PwgError(WS_ERR_INVALID_PARAM, l10n('The passwords do not match'));
|
||||
}
|
||||
}
|
||||
|
||||
$user_id = register_user(
|
||||
$params['username'],
|
||||
$params['password'],
|
||||
$params['email'],
|
||||
false, // notify admin
|
||||
$errors,
|
||||
$params['send_password_by_mail']
|
||||
);
|
||||
|
||||
if (!$user_id)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user