Make WordPress Core


Ignore:
Timestamp:
12/09/2008 06:03:31 PM (16 years ago)
Author:
ryan
Message:

Strip trailing whitespace

File:
1 edited

Legend:

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

    r9661 r10150  
    536536 *
    537537 * @param string $orderby Order by string to be checked.
    538  * @return string|false Returns the order by clause if it is a match, false otherwise. 
     538 * @return string|false Returns the order by clause if it is a match, false otherwise.
    539539 */
    540540function sanitize_sql_orderby( $orderby ){
     
    882882 *
    883883 * @param string $gpc The string returned from HTTP request data.
    884  * @return string Returns a string escaped with slashes. 
     884 * @return string Returns a string escaped with slashes.
    885885 */
    886886function addslashes_gpc($gpc) {
     
    913913 * Navigates through an array and encodes the values to be used in a URL.
    914914 *
    915  * Uses a callback to pass the value of the array back to the function as a 
    916  * string. 
     915 * Uses a callback to pass the value of the array back to the function as a
     916 * string.
    917917 *
    918918 * @since 2.2.0
     
    11961196 *
    11971197 * @param string $timezone Either 'Z' for 0 offset or '±hhmm'.
    1198  * @return int|float The offset in seconds. 
     1198 * @return int|float The offset in seconds.
    11991199 */
    12001200function iso8601_timezone_to_offset($timezone) {
     
    16901690    if ( 'display' == $context ) {
    16911691        $url = preg_replace('/&([^#])(?![a-z]{2,8};)/', '&$1', $url);
    1692         $url = str_replace( "'", ''', $url ); 
     1692        $url = str_replace( "'", ''', $url );
    16931693    }
    16941694
     
    18061806 *
    18071807 * This is basically a switch statement which will pass $value through a number
    1808  * of functions depending on the $option. 
     1808 * of functions depending on the $option.
    18091809 *
    18101810 * @since 2.0.5
Note: See TracChangeset for help on using the changeset viewer.