diff options
Diffstat (limited to 'mod/blog')
-rw-r--r-- | mod/blog/blog_lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/blog/blog_lib.php b/mod/blog/blog_lib.php index b6a4d53c2..50ba5e92d 100644 --- a/mod/blog/blog_lib.php +++ b/mod/blog/blog_lib.php @@ -321,7 +321,7 @@ class ElggBlog extends ElggObject { if (parent::save()) { global $CONFIG; $published = $this->publish_date; - $sql = "UPDATE {$CONFIG->dbprefix}entities SET time_created = '$published', time_updated = '$published'"; + $sql = "UPDATE {$CONFIG->dbprefix}entities SET time_created = '$published', time_updated = '$published' WHERE guid = '{$this->getGUID()}'"; return update_data($sql); } |