merging 6.6.5 changes
This commit is contained in:
parent
87d2a6401e
commit
4b93aa1914
8 changed files with 74 additions and 29 deletions
23
docs/upgrades/upgrade_6.6.4-6.6.5.pl
Normal file
23
docs/upgrades/upgrade_6.6.4-6.6.5.pl
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use lib "../../lib";
|
||||
use Getopt::Long;
|
||||
use strict;
|
||||
use File::Path;
|
||||
|
||||
my $configFile;
|
||||
my $quiet;
|
||||
|
||||
GetOptions(
|
||||
'configFile=s'=>\$configFile,
|
||||
'quiet'=>\$quiet
|
||||
);
|
||||
|
||||
|
||||
#--------------------------------------------
|
||||
print "\tRemoving old HTML::Template if it exists. Check gotcha.txt for details.\n" unless ($quiet);
|
||||
rmtree("../../lib/HTML/Template");
|
||||
unlink("../../lib/HTML/Template.pm");
|
||||
|
||||
|
||||
|
||||
2
docs/upgrades/upgrade_6.6.4-6.6.5.sql
Normal file
2
docs/upgrades/upgrade_6.6.4-6.6.5.sql
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
insert into webguiVersion values ('6.6.5','upgrade',unix_timestamp());
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue