diff options
author | rub <rub@piwigo.org> | 2007-12-11 06:10:38 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-12-11 06:10:38 +0000 |
commit | 89623393d4b1722c399454656dc3abc3e39446f4 (patch) | |
tree | 4ec078194906072eb83bbbe917cd899c9308609b /include/user.inc.php | |
parent | 24553207a974463deaeffde63d0561833ad321a9 (diff) |
Resolved issue 0000784: Mail notification disabled on register user
Merge branch-1_7 2176:2177 into BSF
git-svn-id: http://piwigo.org/svn/trunk@2178 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/user.inc.php')
-rw-r--r-- | include/user.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/user.inc.php b/include/user.inc.php index 047e68723..965cfa262 100644 --- a/include/user.inc.php +++ b/include/user.inc.php @@ -65,7 +65,7 @@ if ($conf['apache_authentication'] and isset($_SERVER['REMOTE_USER'])) { if (!($user['id'] = get_userid($_SERVER['REMOTE_USER']))) { - register_user($_SERVER['REMOTE_USER'], '', ''); + register_user($_SERVER['REMOTE_USER'], '', '', false); $user['id'] = get_userid($_SERVER['REMOTE_USER']); } } |