Added feature to the Syndicated Content Wobject that allows the use of macros in the RSS URL property

This commit is contained in:
Roy Johnson 2006-11-02 20:17:47 +00:00
parent 46055a5812
commit c197ded0a9
4 changed files with 42 additions and 2 deletions

View file

@ -22,9 +22,17 @@ my $session = start(); # this line required
commerceSalesTax($session);
createDictionaryStorage($session);
addRssUrlMacroProcessing($session);
finish($session); # this line required
#--------------------------------------------------
sub addRssUrlMacroProcessing {
my $session = shift;
print "\tAdding option to process macros in a Syndicated Content RSS Url.\n" unless ($quiet);
$session->db->write("alter table SyndicatedContent add column processMacroInRssUrl int(11) default 0");
}
##-------------------------------------------------
sub commerceSalesTax {