Skip to:
Content

bbPress.org

Changeset 5320


Ignore:
Timestamp:
03/12/2014 08:57:44 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Remove akismet_test_mode() usage as it's been removed from Akismet's development branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/extend/akismet.php

    r5185 r5320  
    360360        $post_data['user_agent']   = $_SERVER['HTTP_USER_AGENT'];
    361361
    362         // Akismet Test Mode
    363         if ( akismet_test_mode() )
    364             $post_data['is_test'] = 'true';
    365 
    366362        // Loop through _POST args and rekey strings
    367         foreach ( $_POST as $key => $value )
    368             if ( is_string( $value ) )
     363        foreach ( $_POST as $key => $value ) {
     364            if ( is_string( $value ) ) {
    369365                $post_data['POST_' . $key] = $value;
     366            }
     367        }
    370368
    371369        // Keys to ignore
     
    386384
    387385        // Ready...
    388         foreach ( $post_data as $key => $data )
     386        foreach ( $post_data as $key => $data ) {
    389387            $query_string .= $key . '=' . urlencode( stripslashes( $data ) ) . '&';
     388        }
    390389
    391390        // Aim...
Note: See TracChangeset for help on using the changeset viewer.