diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-26 23:52:22 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-26 23:52:22 +0000 |
commit | bfb4b15d2f75835033d9bbb865edd77dcb282bb6 (patch) | |
tree | 80f55833ccce52ffe2f5f4ae320bd90234682cfd /include/picture_comment.inc.php | |
parent | eac687a6e67aec80481830e3899eaf19776a513d (diff) |
- bug 654: sql error on user comment (since my commit 1849)
- languages: english corrections + keep lang files sorted by key
- admin multi view correction: language was not always properly changed
- refactor function get_computed_categories (with rub's blessing)
git-svn-id: http://piwigo.org/svn/trunk@1860 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/picture_comment.inc.php')
-rw-r--r-- | include/picture_comment.inc.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php index 424fd3fd3..c84f2a629 100644 --- a/include/picture_comment.inc.php +++ b/include/picture_comment.inc.php @@ -56,9 +56,7 @@ if ( $page['show_comments'] and isset( $_POST['content'] ) ) include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php'); - $comment_action = insert_user_comment( - $comm, @$_POST['key'], $page['image_id'], $infos - ); + $comment_action = insert_user_comment($comm, @$_POST['key'], $infos ); switch ($comment_action) { |