backup MDL-25283 Fixed regression in restore by adding destroy method to independent restore stages.

This commit is contained in:
Sam Hemelryk 2010-11-18 07:09:09 +00:00
parent 0d447fe634
commit 92f3345773

View File

@ -133,6 +133,9 @@ abstract class restore_ui_independent_stage {
final public function is_independent() {
return true;
}
public function destroy() {
// Nothing to destroy here!
}
}
/**