diff options
author | Eric <eric@piwigo.org> | 2009-11-18 22:02:21 +0000 |
---|---|---|
committer | Eric <eric@piwigo.org> | 2009-11-18 22:02:21 +0000 |
commit | c020cd0d7cb7710a6ffe04fc8b6d6ccfecb2c466 (patch) | |
tree | 653723f35e14bcee66eeb6bad049c3b106444040 /include | |
parent | 41fe69917c8fc7fd75785eb623897868dccafa81 (diff) |
Rollback to preview commit
git-svn-id: http://piwigo.org/svn/trunk@4306 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/functions_comment.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/functions_comment.inc.php b/include/functions_comment.inc.php index 3ac005223..aff7b9a35 100644 --- a/include/functions_comment.inc.php +++ b/include/functions_comment.inc.php @@ -156,9 +156,9 @@ SELECT id FROM '.COMMENTS_TABLE.' INSERT INTO '.COMMENTS_TABLE.' (author, author_id, content, date, validated, validation_date, image_id) VALUES ( - "'.addslashes($comm['author']).'", + "'.$comm['author'].'", '.$comm['author_id'].', - "'.addslashes($comm['content']).'", + "'.$comm['content'].'", NOW(), "'.($comment_action=='validate' ? 'true':'false').'", '.($comment_action=='validate' ? 'NOW()':'NULL').', |