Make WordPress Core


Ignore:
Timestamp:
11/17/2010 06:47:34 PM (14 years ago)
Author:
ryan
Message:

Pinking shears

File:
1 edited

Legend:

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

    r16431 r16438  
    224224/**
    225225 * Newline preservation help function for wpautop
    226  * 
     226 *
    227227 * @since 3.1.0
    228228 * @access private
     
    738738 *
    739739 * Removes tags, octets, entities, and if strict is enabled, will only keep
    740  * alphanumeric, _, space, ., -, @. After sanitizing, it passes the username, 
     740 * alphanumeric, _, space, ., -, @. After sanitizing, it passes the username,
    741741 * raw username (the username in the parameter), and the value of $strict as
    742742 * parameters for the 'sanitize_user' filter.
     
    15751575/**
    15761576 * Helper function to convert hex encoded chars to ascii
    1577  * 
     1577 *
    15781578 * @since 3.1.0
    15791579 * @access private
    15801580 * @param $match the preg_replace_callback matches array
    15811581 */
    1582 function _wp_iso_convert( $match ) { 
    1583     return chr( hexdec( strtolower( $match[1] ) ) ); 
    1584 } 
     1582function _wp_iso_convert( $match ) {
     1583    return chr( hexdec( strtolower( $match[1] ) ) );
     1584}
    15851585
    15861586/**
Note: See TracChangeset for help on using the changeset viewer.