More cleanups from the old 7.5 commerce system. Fixes bug #11068

This commit is contained in:
Colin Kuskie 2009-09-30 10:10:03 -07:00
parent 8c1a44b551
commit 0388a2e403
2 changed files with 10 additions and 0 deletions

View file

@ -24,6 +24,7 @@
- fixed #11061: SQLForm_fieldOrder
- fixed #11066: wrong definitions
- fixed #11070: i18n Asset_Navigation::assetsToInclude
- fixed #11068: ITransact_recurringStatus
7.8.0
- upgraded YUI to 2.8.0r4

View file

@ -33,6 +33,7 @@ my $session = start(); # this line required
fixWikis( $session );
fixEMSTemplates( $session );
removeOldSubscriptionTables( $session );
removeOldITransactTables( $session );
removeSQLFormTables( $session );
fixBadRevisionDateColumns( $session );
@ -82,6 +83,14 @@ sub removeOldSubscriptionTables {
print "Done.\n" unless $quiet;
}
# Describe what our function does
sub removeOldITransactTables {
my $session = shift;
print "\tRemoving tables leftover from the old 7.5 ITransact Plugin... " unless $quiet;
$session->db->write('DROP TABLE IF EXISTS ITransact_recurringStatus');
print "Done.\n" unless $quiet;
}
# Describe what our function does
sub fixWikis {
my $session = shift;