Remove a folder that crept into the import node. Fixes bug #11081
This commit is contained in:
parent
9b76e0e162
commit
ad702e908f
2 changed files with 13 additions and 0 deletions
|
|
@ -31,6 +31,7 @@
|
||||||
- fixed #11071: Form::Date / Session::DateTime
|
- fixed #11071: Form::Date / Session::DateTime
|
||||||
- fixed #11076: WebGUI::Account::Friends message_rpp
|
- fixed #11076: WebGUI::Account::Friends message_rpp
|
||||||
- fixed #11067: My Purchases Detail Template - Status Message broken
|
- fixed #11067: My Purchases Detail Template - Status Message broken
|
||||||
|
- fixed #11081: Prop style in 7.8.0?
|
||||||
|
|
||||||
7.8.0
|
7.8.0
|
||||||
- upgraded YUI to 2.8.0r4
|
- upgraded YUI to 2.8.0r4
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,7 @@ removeOldSubscriptionTables( $session );
|
||||||
removeOldITransactTables( $session );
|
removeOldITransactTables( $session );
|
||||||
removeSQLFormTables( $session );
|
removeSQLFormTables( $session );
|
||||||
fixBadRevisionDateColumns( $session );
|
fixBadRevisionDateColumns( $session );
|
||||||
|
removeImportCruft( $session );
|
||||||
|
|
||||||
finish($session); # this line required
|
finish($session); # this line required
|
||||||
|
|
||||||
|
|
@ -109,6 +110,17 @@ sub fixEMSTemplates {
|
||||||
print "Done.\n" unless $quiet;
|
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 --------------------------------
|
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue