diff options
Diffstat (limited to 'modules/comment/helpers')
-rw-r--r-- | modules/comment/helpers/comment.php | 1 | ||||
-rw-r--r-- | modules/comment/helpers/comment_installer.php | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/helpers/comment.php b/modules/comment/helpers/comment.php index 2adbc218..444e7e95 100644 --- a/modules/comment/helpers/comment.php +++ b/modules/comment/helpers/comment.php @@ -38,7 +38,6 @@ class comment_Core { $guest_email=ull, $guest_url=null) { $comment = ORM::factory("comment"); $comment->author_id = $author->id; - $comment->created = time(); $comment->guest_email = $guest_email; $comment->guest_name = $guest_name; $comment->guest_url = $guest_url; diff --git a/modules/comment/helpers/comment_installer.php b/modules/comment/helpers/comment_installer.php index 30c8874d..7de2c476 100644 --- a/modules/comment/helpers/comment_installer.php +++ b/modules/comment/helpers/comment_installer.php @@ -45,6 +45,7 @@ class comment_installer { `server_remote_port` varchar(16) default NULL, `state` char(15) default 'unpublished', `text` text, + `updated` int(9) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;"); |