More cleanups from the old 7.5 commerce system. Fixes bug #11068
This commit is contained in:
parent
8c1a44b551
commit
0388a2e403
2 changed files with 10 additions and 0 deletions
|
|
@ -24,6 +24,7 @@
|
||||||
- fixed #11061: SQLForm_fieldOrder
|
- fixed #11061: SQLForm_fieldOrder
|
||||||
- fixed #11066: wrong definitions
|
- fixed #11066: wrong definitions
|
||||||
- fixed #11070: i18n Asset_Navigation::assetsToInclude
|
- fixed #11070: i18n Asset_Navigation::assetsToInclude
|
||||||
|
- fixed #11068: ITransact_recurringStatus
|
||||||
|
|
||||||
7.8.0
|
7.8.0
|
||||||
- upgraded YUI to 2.8.0r4
|
- upgraded YUI to 2.8.0r4
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,7 @@ my $session = start(); # this line required
|
||||||
fixWikis( $session );
|
fixWikis( $session );
|
||||||
fixEMSTemplates( $session );
|
fixEMSTemplates( $session );
|
||||||
removeOldSubscriptionTables( $session );
|
removeOldSubscriptionTables( $session );
|
||||||
|
removeOldITransactTables( $session );
|
||||||
removeSQLFormTables( $session );
|
removeSQLFormTables( $session );
|
||||||
fixBadRevisionDateColumns( $session );
|
fixBadRevisionDateColumns( $session );
|
||||||
|
|
||||||
|
|
@ -82,6 +83,14 @@ sub removeOldSubscriptionTables {
|
||||||
print "Done.\n" unless $quiet;
|
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
|
# Describe what our function does
|
||||||
sub fixWikis {
|
sub fixWikis {
|
||||||
my $session = shift;
|
my $session = shift;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue