]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/plugins/akismet/class.akismet-admin.php
Wordpress 4.5.3
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / class.akismet-admin.php
index 08d677011d3aae1c19bcd8a9498531e9adf0df16..c9e82eb04d3f33c9af9aa261cdc0aef22f58e9f0 100644 (file)
@@ -366,6 +366,12 @@ class Akismet_Admin {
                }
                $moderation = $wpdb->get_results( "SELECT * FROM {$wpdb->comments} WHERE comment_approved = '0'{$paginate}", ARRAY_A );
 
                }
                $moderation = $wpdb->get_results( "SELECT * FROM {$wpdb->comments} WHERE comment_approved = '0'{$paginate}", ARRAY_A );
 
+               $result_counts = array(
+                       'spam' => 0,
+                       'ham' => 0,
+                       'error' => 0,
+               );
+
                foreach ( (array) $moderation as $c ) {
                        $c['user_ip']      = $c['comment_author_IP'];
                        $c['user_agent']   = $c['comment_agent'];
                foreach ( (array) $moderation as $c ) {
                        $c['user_ip']      = $c['comment_author_IP'];
                        $c['user_agent']   = $c['comment_agent'];
@@ -392,14 +398,15 @@ class Akismet_Admin {
                                delete_comment_meta( $c['comment_ID'], 'akismet_error' );
                                delete_comment_meta( $c['comment_ID'], 'akismet_delayed_moderation_email' );
                                Akismet::update_comment_history( $c['comment_ID'], '', 'recheck-spam' );
                                delete_comment_meta( $c['comment_ID'], 'akismet_error' );
                                delete_comment_meta( $c['comment_ID'], 'akismet_delayed_moderation_email' );
                                Akismet::update_comment_history( $c['comment_ID'], '', 'recheck-spam' );
-
+                               ++$result_counts['spam'];
                        } elseif ( 'false' == $response[1] ) {
                                update_comment_meta( $c['comment_ID'], 'akismet_result', 'false' );
                                delete_comment_meta( $c['comment_ID'], 'akismet_error' );
                                delete_comment_meta( $c['comment_ID'], 'akismet_delayed_moderation_email' );
                                Akismet::update_comment_history( $c['comment_ID'], '', 'recheck-ham' );
                        } elseif ( 'false' == $response[1] ) {
                                update_comment_meta( $c['comment_ID'], 'akismet_result', 'false' );
                                delete_comment_meta( $c['comment_ID'], 'akismet_error' );
                                delete_comment_meta( $c['comment_ID'], 'akismet_delayed_moderation_email' );
                                Akismet::update_comment_history( $c['comment_ID'], '', 'recheck-ham' );
-                       // abnormal result: error
+                               ++$result_counts['ham'];
                        } else {
                        } else {
+                               // abnormal result: error
                                update_comment_meta( $c['comment_ID'], 'akismet_result', 'error' );
                                Akismet::update_comment_history(
                                        $c['comment_ID'],
                                update_comment_meta( $c['comment_ID'], 'akismet_result', 'error' );
                                Akismet::update_comment_history(
                                        $c['comment_ID'],
@@ -407,6 +414,7 @@ class Akismet_Admin {
                                        'recheck-error',
                                        array( 'response' => substr( $response[1], 0, 50 ) )
                                );
                                        'recheck-error',
                                        array( 'response' => substr( $response[1], 0, 50 ) )
                                );
+                               ++$result_counts['error'];
                        }
 
                        delete_comment_meta( $c['comment_ID'], 'akismet_rechecking' );
                        }
 
                        delete_comment_meta( $c['comment_ID'], 'akismet_rechecking' );
@@ -414,6 +422,7 @@ class Akismet_Admin {
                if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
                        wp_send_json( array(
                                'processed' => count((array) $moderation),
                if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
                        wp_send_json( array(
                                'processed' => count((array) $moderation),
+                               'counts' => $result_counts,
                        ));
                }
                else {
                        ));
                }
                else {