Skip to:
Content

bbPress.org


Ignore:
Timestamp:
08/11/2015 08:17:53 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Sniffer: Whitespace around variables in arrays.

File:
1 edited

Legend:

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

    r5842 r5908  
    399399            // Key should not be ignored
    400400            if ( ! in_array( $key, $ignore ) && is_string( $value ) ) {
    401                 $post_data[$key] = $value;
     401                $post_data[ $key ] = $value;
    402402
    403403            // Key should be ignored
    404404            } else {
    405                 $post_data[$key] = '';
     405                $post_data[ $key ] = '';
    406406            }
    407407        }
Note: See TracChangeset for help on using the changeset viewer.