fix manage committed versions
This commit is contained in:
parent
c073c82436
commit
449caaf14a
2 changed files with 4 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
|||
7.4.2
|
||||
- Group names can now be 100 characters long
|
||||
- prevent groups being created with duplicate names
|
||||
- fix: Version Tags->Manage Committed Versions Not Working
|
||||
http://www.webgui.org/bugs/tracker/version-tags-manage-committed-versions-not-working
|
||||
|
||||
7.4.1
|
||||
- fix: crons wouldn't load into spectre's queue at startup.
|
||||
|
|
|
|||
|
|
@ -288,7 +288,8 @@ A reference to the current session.
|
|||
|
||||
sub www_manageCommittedVersions {
|
||||
my $session = shift;
|
||||
return $session->privilege->adminOnlycanView($session);
|
||||
return $session->privilege->adminOnly
|
||||
unless canView($session);
|
||||
my $ac = WebGUI::AdminConsole->new($session,"versions");
|
||||
my $i18n = WebGUI::International->new($session,"VersionTag");
|
||||
my $rollback = $i18n->get('rollback');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue