preparing for 7.0.5 release

fixed some bugs
This commit is contained in:
JT Smith 2006-08-09 16:09:17 +00:00
parent 3000fccb79
commit dfe92a73e2
7 changed files with 97 additions and 20 deletions

View file

@ -10,6 +10,10 @@
- fix: Redirects get displayed inside page layouts as '0'
- fix: Mysterious "0" Appearing When Admin Is Off
- fix: Deletion of Products
- fix: Request Tracker Thread is called Request Tracker Post
- fix: asset constructor new, does not return undef as documented
- fix: Static export in html not working through the workflow
7.0.4
- Added a forum.lastPost.user.hasRead variable to the Message Board template.

File diff suppressed because one or more lines are too long

View file

@ -12,7 +12,7 @@ use lib "../../lib";
use strict;
use Getopt::Long;
use WebGUI::Session;
use WebGUI::Asset;
my $toVersion = "7.0.5"; # make this match what version you're going to
my $quiet; # this line required
@ -20,17 +20,18 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
renameTemplate();
finish($session); # this line required
##-------------------------------------------------
#sub exampleFunction {
# my $session = shift;
# print "\tWe're doing some stuff here that you should know about.\n" unless ($quiet);
# # and here's our code
#}
#-------------------------------------------------
sub renameTemplate {
print "\tRenaming a template.\n" unless ($quiet);
my $asset = WebGUI::Asset->new($session, "PBtmpl0000000000000209", "WebGUI::Asset::Template");
if (defined $asset) {
$asset->update({title=>"Request Tracker Thread",menuTitle=>"Request Tracker Thread"});
}
}