Adjust `_default_wp_die_handler()` formatting so it doesn't confuse Sublime Text's parsing and syntax highlighting.
Fixes #34135 git-svn-id: https://develop.svn.wordpress.org/trunk@34793 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e677f26aa8
commit
96faf97a0f
|
@ -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">
|
||||
|
|
Loading…
Reference in New Issue