diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index e93d5118f..e19ebc027 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -31,6 +31,7 @@ - fixed #11071: Form::Date / Session::DateTime - fixed #11076: WebGUI::Account::Friends message_rpp - fixed #11067: My Purchases Detail Template - Status Message broken + - fixed #11081: Prop style in 7.8.0? 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 c01cccc80..867429d9b 100644 --- a/docs/upgrades/upgrade_7.8.0-7.8.1.pl +++ b/docs/upgrades/upgrade_7.8.0-7.8.1.pl @@ -36,6 +36,7 @@ removeOldSubscriptionTables( $session ); removeOldITransactTables( $session ); removeSQLFormTables( $session ); fixBadRevisionDateColumns( $session ); +removeImportCruft( $session ); finish($session); # this line required @@ -109,6 +110,17 @@ sub fixEMSTemplates { print "Done.\n" unless $quiet; } +# Describe what our function does +sub removeImportCruft { + my $session = shift; + print "\tRemoving cruft from the import node... " unless $quiet; + my $propFolder = WebGUI::Asset->newByDynamicClass($session, '2c4RcwsUfQMup_WNujoTGg'); + if ($propFolder) { + $propFolder->purge; + } + print "Done.\n" unless $quiet; +} + # -------------- DO NOT EDIT BELOW THIS LINE --------------------------------