Resolved Issue ID 0000526:

o Add default group to new user

Change default value and $conf name.


git-svn-id: http://piwigo.org/svn/trunk@1582 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub
2006-10-29 13:42:19 +00:00
parent 2433a7cb54
commit a0e981198d
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -223,7 +223,7 @@ $conf['check_upgrade_feed'] = true;
$conf['rate_items'] = array(0,1,2,3,4,5);
// Dafault groups to assign to new user
$conf['id_group'] = 1;
$conf['default_group_id'] = -1;
// +-----------------------------------------------------------------------+
// | metadata |
+3 -3
View File
@@ -94,10 +94,10 @@ SELECT MAX('.$conf['user_fields']['id'].') + 1
mass_inserts(USERS_TABLE, array_keys($insert), array($insert));
// Assign by default one group
if(isset($conf['id_group']))
if(isset($conf['default_group_id']))
{
$query = '
select count(*) from '.GROUPS_TABLE.' where id = '.$conf['id_group'].';';
select count(*) from '.GROUPS_TABLE.' where id = '.$conf['default_group_id'].';';
list($exist_group) = mysql_fetch_array(pwg_query($query));
if ($exist_group == 1)
@@ -105,7 +105,7 @@ select count(*) from '.GROUPS_TABLE.' where id = '.$conf['id_group'].';';
$insert =
array(
'user_id' => $next_id,
'group_id' => $conf['id_group']
'group_id' => $conf['default_group_id']
);
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');