preparing for 6.7.2 bugfix cycle

This commit is contained in:
JT Smith 2005-08-18 21:36:13 +00:00
parent 9b88390df9
commit c132a72b7b
4 changed files with 151 additions and 79 deletions

View file

@ -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

View 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();

View file

@ -1,5 +1,5 @@
package WebGUI;
our $VERSION = "6.7.1";
our $VERSION = "6.7.2";
our $STATUS = "beta";
#-------------------------------------------------------------------