Make WordPress Core


Ignore:
Timestamp:
12/21/2006 10:45:58 AM (19 years ago)
Author:
markjaquith
Message:

Whitespace cleanup for [4656]

File:
1 edited

Legend:

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

    r4656 r4657  
    232232
    233233function form_option($option) {
    234     echo attribute_escape( get_option($option));
     234    echo attribute_escape(get_option($option));
    235235}
    236236
     
    11911191            $v = substr(strstr($a, '='), 1);
    11921192            $k = substr($a, 0, -(strlen($v)+1));
    1193             $html .= "\t\t<input type='hidden' name='" . attribute_escape( urldecode($k)) . "' value='" . attribute_escape( urldecode($v)) . "' />\n";
     1193            $html .= "\t\t<input type='hidden' name='" . attribute_escape(urldecode($k)) . "' value='" . attribute_escape(urldecode($v)) . "' />\n";
    11941194        }
    11951195        $html .= "\t\t<input type='hidden' name='_wpnonce' value='" . wp_create_nonce($action) . "' />\n";
Note: See TracChangeset for help on using the changeset viewer.