mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-21 00:53:04 +02:00
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:
@@ -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 |
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user