Make WordPress Core


Ignore:
Timestamp:
12/07/2006 03:57:23 AM (20 years ago)
Author:
markjaquith
Message:

Bunch of whitespace and coding standardization.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/plugin.php

    r4424 r4626  
    1010        // check that we don't already have the same filter at the same priority
    1111        if ( isset($wp_filter[$tag]["$priority"]) ) {
    12                 foreach($wp_filter[$tag]["$priority"] as $filter) {
     12                foreach ( $wp_filter[$tag]["$priority"] as $filter ) {
    1313                        // uncomment if we want to match function AND accepted_args
    1414                        // if ( $filter == array($function, $accepted_args) ) {
     
    136136        foreach ( (array) $wp_filter[$tag] as $priority => $functions ) {
    137137                if ( !is_null($functions) ) {
    138                         foreach( (array) $functions as $function ) {
     138                        foreach ( (array) $functions as $function ) {
    139139                                $function_name = $function['function'];
    140140                                $accepted_args = $function['accepted_args'];
Note: See TracChangeset for help on using the changeset viewer.