Adjust `_default_wp_die_handler()` formatting so it doesn't confuse Sublime Text's parsing and syntax highlighting.

Fixes #34135

Built from https://develop.svn.wordpress.org/trunk@34793


git-svn-id: http://core.svn.wordpress.org/trunk@34758 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2015-10-03 01:32:24 +00:00
parent ca86a8a404
commit 5e98b20e84
2 changed files with 6 additions and 4 deletions

View File

@ -2587,9 +2587,11 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
}
<?php if ( 'rtl' == $text_direction ) : ?>
body { font-family: Tahoma, Arial; }
<?php endif; ?>
<?php
if ( 'rtl' == $text_direction ) {
echo 'body { font-family: Tahoma, Arial; }';
}
?>
</style>
</head>
<body id="error-page">

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34792';
$wp_version = '4.4-alpha-34793';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.