Bug 312406 Checksetup fails to check for existing group_group_map for Bugzilla <2.17

patch by A. Karl Kornel <karl@kornel.name>
r=joel, a=justdave
This commit is contained in:
bugreport%peshkin.net 2005-10-14 03:50:57 +00:00
Родитель 7b233cf656
Коммит a53154ddb0
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -4205,6 +4205,11 @@ if (@admins) {
(user_id, group_id, isbless, grant_type)
VALUES ($userid, $adminid, 1, " . GRANT_DIRECT . ")");
}
$dbh->bz_lock_tables('groups READ',
'group_group_map WRITE');
$dbh->do('DELETE FROM group_group_map WHERE member_id = ?',
undef, $adminid);
$sth = $dbh->prepare("SELECT id FROM groups");
$sth->execute();
while ( my ($id) = $sth->fetchrow_array() ) {
@ -4222,6 +4227,7 @@ if (@admins) {
(member_id, grantor_id, grant_type)
VALUES ($adminid, $id," . GROUP_MEMBERSHIP . ")");
}
$dbh->bz_unlock_tables();
}