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:
parent
ca86a8a404
commit
5e98b20e84
|
@ -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">
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue