Merging changes from 6.6.4
Added new definition features to wobjects and assets.
This commit is contained in:
parent
3805ebed23
commit
c4b3e4092d
43 changed files with 457 additions and 717 deletions
26
docs/upgrades/upgrade_6.6.3-6.6.4.pl
Normal file
26
docs/upgrades/upgrade_6.6.3-6.6.4.pl
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use lib "../../lib";
|
||||
use Getopt::Long;
|
||||
use strict;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::Grouping;
|
||||
|
||||
my $configFile;
|
||||
my $quiet;
|
||||
|
||||
GetOptions(
|
||||
'configFile=s'=>\$configFile,
|
||||
'quiet'=>\$quiet
|
||||
);
|
||||
|
||||
WebGUI::Session::open("../..",$configFile);
|
||||
|
||||
#--------------------------------------------
|
||||
print "\tMaking admins part of product managers.\n" unless ($quiet);
|
||||
WebGUI::Grouping::addGroupsToGroups(['3'],['14']);
|
||||
|
||||
|
||||
WebGUI::Session::close();
|
||||
|
||||
|
||||
7
docs/upgrades/upgrade_6.6.3-6.6.4.sql
Normal file
7
docs/upgrades/upgrade_6.6.3-6.6.4.sql
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue