preparing for 6.7.2 bugfix cycle
This commit is contained in:
parent
9b88390df9
commit
c132a72b7b
4 changed files with 151 additions and 79 deletions
|
|
@ -1,3 +1,6 @@
|
|||
6.7.2
|
||||
|
||||
|
||||
6.7.1
|
||||
- Fixed a fatal error with Redirects
|
||||
- Fixed a fatal error in the date field in the new pluggable forms system.
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
26
docs/upgrades/upgrade_6.7.1-6.7.2.pl
Normal file
26
docs/upgrades/upgrade_6.7.1-6.7.2.pl
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
my $toVersion = "6.7.2";
|
||||
|
||||
$|=1; #disable output buffering
|
||||
|
||||
use lib "../../lib";
|
||||
use Getopt::Long;
|
||||
use strict;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::SQL;
|
||||
|
||||
my $configFile;
|
||||
my $quiet;
|
||||
|
||||
GetOptions(
|
||||
'configFile=s'=>\$configFile,
|
||||
'quiet'=>\$quiet
|
||||
);
|
||||
|
||||
WebGUI::Session::open("../..",$configFile);
|
||||
WebGUI::Session::refreshUserInfo(3);
|
||||
|
||||
WebGUI::SQL->write("insert into webguiVersion values (".quote($toVersion).",'upgrade',".time().")");
|
||||
|
||||
WebGUI::Session::close();
|
||||
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
package WebGUI;
|
||||
our $VERSION = "6.7.1";
|
||||
our $VERSION = "6.7.2";
|
||||
our $STATUS = "beta";
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue