BUGFIX: fixed ghost records existing on the live site when editing draft

This commit is contained in:
Will Rossiter 2009-09-23 00:02:50 +00:00
parent 379bcc7921
commit 2fd0883ea1
1 changed files with 9 additions and 0 deletions

View File

@ -107,6 +107,15 @@ class UserDefinedForm extends Page {
* @return void
*/
public function doPublish() {
// remove fields on the live table which could have been orphaned.
$live = Versioned::get_by_stage("EditableFormField", "Live", "`EditableFormField`.ParentID = $this->ID");
if($live) {
foreach($live as $field) {
$field->deleteFromStage('Live');
}
}
// publish the draft pages
if($this->Fields()) {
foreach($this->Fields() as $field) {
$field->publish('Stage', 'Live');