Bugfix: [ 1003511 ] Users cannot be added to Registered Users if removed
This commit is contained in:
parent
356e58ca22
commit
7f2dab08fa
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@
|
||||||
- Bugfix: [ 1003594 ] Fixed Navigation Cacheing bug
|
- Bugfix: [ 1003594 ] Fixed Navigation Cacheing bug
|
||||||
- Bugfix: [ 1000299 ] laodAllConfigs should be loadAllConfigs?
|
- Bugfix: [ 1000299 ] laodAllConfigs should be loadAllConfigs?
|
||||||
- Bugfix: [ 995088 ] Error in printable macro 6.1.1
|
- Bugfix: [ 995088 ] Error in printable macro 6.1.1
|
||||||
|
- Bugfix: [ 1003511 ] Users cannot be added to Registered Users if removed
|
||||||
|
|
||||||
6.1.1
|
6.1.1
|
||||||
- bugfix [ 991313 ] Manage Translations doesn't work
|
- bugfix [ 991313 ] Manage Translations doesn't work
|
||||||
|
|
|
||||||
|
|
@ -425,7 +425,7 @@ sub www_editUserGroup {
|
||||||
'</td><td class="tableHeader">'.WebGUI::International::get(369).'</td></tr>';
|
'</td><td class="tableHeader">'.WebGUI::International::get(369).'</td></tr>';
|
||||||
my $p = WebGUI::Paginator->new("op=editUserGroups&uid=".$session{form}{uid});
|
my $p = WebGUI::Paginator->new("op=editUserGroups&uid=".$session{form}{uid});
|
||||||
$p->setDataByQuery("select groups.groupId,groups.groupName,groupings.expireDate
|
$p->setDataByQuery("select groups.groupId,groups.groupName,groupings.expireDate
|
||||||
from groupings,groups where groupings.groupId=groups.groupId and groupings.userId=$session{form}{uid} order by groups.groupName");
|
from groupings,groups where groupings.groupId=groups.groupId and groupings.userId=$session{form}{uid} and groups.isEditable > 0 order by groups.groupName");
|
||||||
foreach my $row (@{$p->getPageData}) {
|
foreach my $row (@{$p->getPageData}) {
|
||||||
$output .= '<tr><td>'
|
$output .= '<tr><td>'
|
||||||
.WebGUI::Form::checkbox({
|
.WebGUI::Form::checkbox({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue