some bug fixes and preparing for 6.5.4 bugfix cycle
This commit is contained in:
parent
69d43e28c8
commit
e972d70ee7
9 changed files with 515 additions and 165 deletions
|
|
@ -1,3 +1,9 @@
|
|||
6.5.4
|
||||
- fix [ 1160953 ] JavaScript Errors in admin console - IE
|
||||
- Fixed a drag and drop problem.
|
||||
- fix [ 1168195 ] Asset manager: Space between Size and unit
|
||||
|
||||
|
||||
6.5.3
|
||||
- Sorted templates into folders named after their respective namespaces
|
||||
& re-enabled the manage button next to the template dropdown [mwilson]
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
26
docs/upgrades/upgrade_6.5.3-6.5.4.pl
Normal file
26
docs/upgrades/upgrade_6.5.3-6.5.4.pl
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use lib "../../lib";
|
||||
use Getopt::Long;
|
||||
use strict;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::SQL;
|
||||
use WebGUI::Asset;
|
||||
|
||||
my $configFile;
|
||||
my $quiet;
|
||||
|
||||
GetOptions(
|
||||
'configFile=s'=>\$configFile,
|
||||
'quiet'=>\$quiet
|
||||
);
|
||||
|
||||
WebGUI::Session::open("../..",$configFile);
|
||||
|
||||
#--------------------------------------------
|
||||
print "\tdo something.\n" unless ($quiet);
|
||||
|
||||
|
||||
WebGUI::Session::close();
|
||||
|
||||
|
||||
2
docs/upgrades/upgrade_6.5.3-6.5.4.sql
Normal file
2
docs/upgrades/upgrade_6.5.3-6.5.4.sql
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
insert into webguiVersion values ('6.5.4','upgrade',unix_timestamp());
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue