Trim empty lines. Nothing but newline.

git-svn-id: https://develop.svn.wordpress.org/trunk@5700 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2007-06-14 02:25:30 +00:00
parent 0f4225621d
commit b046d67f41
60 changed files with 432 additions and 432 deletions
+4 -4
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 {