merging some of the 6.6.4 changes

This commit is contained in:
JT Smith 2005-07-13 02:10:16 +00:00
parent 88d751b64e
commit 85f8ef7f43
8 changed files with 38 additions and 34 deletions

View file

@ -1,4 +1,5 @@
6.7.0
- fix [ 1229042 ] crumbtrail should show full path...
- Added asset versioning.
- fix [ 1229188 ] typo in Help: Collaboration, Post List Template Variables
- fix [ 1221284 ] Operation\user.pm i18n {internationalize labels}

View file

@ -86,6 +86,11 @@ save you many hours of grief.
6.3.0
--------------------------------------------------------------------
* After upgrading your site you'll have to reset the privileges on
your uploads folder to make sure that the web server has
the privileges it needs to write due to a large number of
changes on the filesystem.
* In order to upgrade to 6.3.0 or beyond you need to have already
already upgraded to 6.2.0 or above. The upgrades will fail if
you try to jump from any 6.1 (or prior) version directly to

View file

@ -1,21 +0,0 @@
#!/usr/bin/perl
use lib "../../lib";
use Getopt::Long;
use strict;
use WebGUI::Session;
my $configFile;
my $quiet;
GetOptions(
'configFile=s'=>\$configFile,
'quiet'=>\$quiet
);
WebGUI::Session::open("../..",$configFile);
WebGUI::Session::close();