diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 4d006a31c..dfacb7767 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -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 diff --git a/docs/upgrades/upgrade_7.8.0-7.8.1.pl b/docs/upgrades/upgrade_7.8.0-7.8.1.pl index 1e2dc633b..c01cccc80 100644 --- a/docs/upgrades/upgrade_7.8.0-7.8.1.pl +++ b/docs/upgrades/upgrade_7.8.0-7.8.1.pl @@ -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;