Added #10145: Global Head Tags in Settings

This commit is contained in:
Doug Bell 2009-04-29 21:51:22 +00:00
parent 003f54fd40
commit 026f7ff47e
5 changed files with 29 additions and 1 deletions

View file

@ -13,6 +13,7 @@
- fixed #10184: Matrix 2.0 - Version Tag Duplicate Type
- fixed #10182: Matrix 2.0 - Comparison view broken in IE 6 & 7
- Added individual shipping requirements to the Sku.
- added #10145: Global Head Tags in Settings
7.7.4
- rfe: Extend DateTime for Week-Nrs (#9151)

View file

@ -40,7 +40,7 @@ sm_updateDailyWorkflow($session);
turnOffAdmin($session);
correctEventTemplateVariables($session);
addGlobalHeadTags( $session );
addShipsSeparateToSku($session);
finish($session); # this line required
@ -59,6 +59,13 @@ sub turnOffAdmin {
print "OK\n" unless $quiet;
}
sub addGlobalHeadTags {
my ( $session ) = @_;
print "\tAdding Global HEAD tags setting... " unless $quiet;
$session->setting->add('globalHeadTags','');
print "OK\n" unless $quiet;
}
sub installStoryManagerTables {
my ($session) = @_;
print "\tAdding Story Manager tables... " unless $quiet;