Trim empty lines. Nothing but newline.

git-svn-id: http://svn.automattic.com/wordpress/trunk@5700 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2007-06-14 02:25:30 +00:00
parent 72c169c2f1
commit 2f09416258
60 changed files with 432 additions and 432 deletions

View File

@@ -706,9 +706,9 @@ function wp($query_vars = '') {
function get_status_header_desc( $code ) {
global $wp_header_to_desc;
$code = (int) $code;
if ( isset( $wp_header_to_desc[$code] ) ) {
return $wp_header_to_desc[$code];
} else {
@@ -718,7 +718,7 @@ function get_status_header_desc( $code ) {
function status_header( $header ) {
$text = get_status_header_desc( $header );
if ( empty( $text ) )
return false;
@@ -1296,7 +1296,7 @@ function wp_parse_args( $args, $defaults = '' ) {
$r = stripslashes_deep( $r );
}
}
if ( is_array( $defaults ) ) {
return array_merge( $defaults, $r );
} else {