aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_comment.inc.php
diff options
context:
space:
mode:
authorEric <eric@piwigo.org>2011-06-06 19:59:02 +0000
committerEric <eric@piwigo.org>2011-06-06 19:59:02 +0000
commit6b153522256e79788022ea52eab110fa15d99132 (patch)
tree9f6cd1e147abc5ddc81afd32d6802548bab346f4 /include/functions_comment.inc.php
parent79823554024abf506ca36d5ad658be305acd9161 (diff)
bug 2323 : Refactoring update_user_comment() function to use user_comment_check trigger in a better place.
git-svn-id: http://piwigo.org/svn/trunk@11253 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_comment.inc.php')
-rw-r--r--include/functions_comment.inc.php18
1 files changed, 8 insertions, 10 deletions
diff --git a/include/functions_comment.inc.php b/include/functions_comment.inc.php
index 932491520..b2a4547d1 100644
--- a/include/functions_comment.inc.php
+++ b/include/functions_comment.inc.php
@@ -245,6 +245,14 @@ function update_user_comment($comment, $post_key)
{
$comment_action='reject';
}
+ elseif (!$conf['comments_validation'] or is_admin()) // should the updated comment must be validated
+ {
+ $comment_action='validate'; //one of validate, moderate, reject
+ }
+ else
+ {
+ $comment_action='moderate'; //one of validate, moderate, reject
+ }
// perform more spam check
$comment_action =
@@ -263,16 +271,6 @@ function update_user_comment($comment, $post_key)
$user_where_clause = ' AND author_id = \''.
$GLOBALS['user']['id'].'\'';
}
-
- // should the updated comment must be validated
- if (!$conf['comments_validation'] or is_admin())
- {
- $comment_action='validate'; //one of validate, moderate, reject
- }
- else
- {
- $comment_action='moderate'; //one of validate, moderate, reject
- }
$query = '
UPDATE '.COMMENTS_TABLE.'