diff options
author | rub <rub@piwigo.org> | 2007-12-11 06:04:07 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-12-11 06:04:07 +0000 |
commit | 1117ff9ed2bef4bde5020fc5f299af9b286754b5 (patch) | |
tree | 07c799b768c9c50a07312dc4a68304981bc588fe /include/user.inc.php | |
parent | 58b1c34aa15759112f7434c65ed74109802622f8 (diff) |
Resolved issue 0000784: Mail notification disabled on register user
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2177 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-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']); } } |