fixed #10133: Matrix compare for priv. group open to any user
This commit is contained in:
parent
beb9b77440
commit
43f09b433f
5 changed files with 64 additions and 0 deletions
BIN
docs/upgrades/packages-7.7.7/matrix-default-view-template.wgpkg
Normal file
BIN
docs/upgrades/packages-7.7.7/matrix-default-view-template.wgpkg
Normal file
Binary file not shown.
|
|
@ -42,9 +42,18 @@ addMapAsset( $session );
|
|||
installFilePumpHandler($session);
|
||||
installFilePumpTable($session);
|
||||
installFilePumpAdminGroup($session);
|
||||
addMatrixMaxGroup($session);
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
sub addMatrixMaxGroup {
|
||||
my $session = shift;
|
||||
print "\tAdding maxComparisonsGroup to Matrix..." unless $quiet;
|
||||
$session->db->write("alter table Matrix add column maxComparisonsGroup char(22);");
|
||||
$session->db->write("alter table Matrix add column maxComparisonsGroupInt integer;");
|
||||
print "Done.\n" unless $quiet;
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
sub fixSMSUserProfileI18N {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue