diff options
Diffstat (limited to '')
-rw-r--r-- | include/functions_comment.inc.php | 18 |
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.' |