diff options
author | rub <rub@piwigo.org> | 2006-03-14 21:31:31 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-03-14 21:31:31 +0000 |
commit | 77aa54a32b1a3fd43cb6615bf5bba9360e21647c (patch) | |
tree | 8933c1e573916f3bff35f8569c06ee77cc69ef91 /include | |
parent | 7eb6e6ca1f01a4cc7793fb76ca68c65bf2e0286c (diff) |
Step 2 improvement issue 0000127:
o Allow to chage high property on user list
o Set initial value for the 2 default users
+ Correction of permissions.png in user list
git-svn-id: http://piwigo.org/svn/trunk@1079 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_user.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index 9e4a83b94..ea2cfbfbe 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -451,7 +451,8 @@ function create_user_infos($user_id) 'show_nb_comments' => boolean_to_string($conf['show_nb_comments']), 'maxwidth' => $conf['default_maxwidth'], 'maxheight' => $conf['default_maxheight'], - 'registration_date' => $dbnow + 'registration_date' => $dbnow, + 'enabled_high' => $conf['newuser_default_enabled_high'] ); include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |