preparing for 6.8.3 bugfix cycle

This commit is contained in:
JT Smith 2005-12-13 16:47:48 +00:00
parent f184646506
commit afe8be718d
4 changed files with 65 additions and 7 deletions

View file

@ -1,3 +1,5 @@
6.8.3
6.8.2
- Converted all the max((assetData.)revisionDate) calls to use mysql5/(4.1)
nested queries.

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,56 @@
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2005 Plain Black Corporation.
#-------------------------------------------------------------------
# Please read the legal notices (docs/legal.txt) and the license
# (docs/license.txt) that came with this distribution before using
# this software.
#-------------------------------------------------------------------
# http://www.plainblack.com info@plainblack.com
#-------------------------------------------------------------------
use lib "../../lib";
use strict;
use Getopt::Long;
use WebGUI::Session;
use WebGUI::SQL;
my $toVersion = "6.8.3"; # make this match what version you're going to
my $quiet; # this line required
start(); # this line required
# upgrade functions go here
finish(); # this line required
##-------------------------------------------------
#sub exampleFunction {
# print "\tWe're doing some stuff here that you should know about.\n" unless ($quiet);
# # and here's our code
#}
# ---- DO NOT EDIT BELOW THIS LINE ----
#-------------------------------------------------
sub start {
my $configFile;
$|=1; #disable output buffering
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().")");
}
#-------------------------------------------------
sub finish {
WebGUI::Session::close();
}