mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
Merge pull request #3 from simonwelsh/patch-1
BUGFIX Force the migrated comment to be inserted into the database.
This commit is contained in:
commit
87aef53f22
@ -47,7 +47,8 @@ class Comment extends DataObject {
|
||||
if($comments) {
|
||||
while($pageComment = $comments->nextRecord()) {
|
||||
// create a new comment from the older page comment
|
||||
$comment = new Comment($pageComment);
|
||||
$comment = new Comment();
|
||||
$comment->update($pageComment);
|
||||
|
||||
// set the variables which have changed
|
||||
$comment->BaseClass = 'SiteTree';
|
||||
@ -244,4 +245,4 @@ class Comment extends DataObject {
|
||||
$this->Parent()->Title
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user