Fix migration

This commit is contained in:
David Craig 2015-05-26 12:36:20 +12:00
parent a536d88936
commit 4ab5de839e
1 changed files with 2 additions and 0 deletions

View File

@ -50,8 +50,10 @@ class BlogEntry extends BlogPost implements MigratableObject {
$this->PublishDate = $this->Date;
// If a user has subclassed BlogEntry, it should not be turned into a BlogPost.
if($this->ClassName === 'BlogEntry') {
$this->ClassName = 'BlogPost';
$this->RecordClassName = 'BlogPost';
}
$this->write();