Make WordPress Core

Changeset 34793


Ignore:
Timestamp:
10/03/2015 01:31:26 AM (9 years ago)
Author:
johnbillion
Message:

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

Fixes #34135

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r34778 r34793  
    25882588        }
    25892589
    2590         <?php if ( 'rtl' == $text_direction ) : ?>
    2591         body { font-family: Tahoma, Arial; }
    2592         <?php endif; ?>
     2590        <?php
     2591        if ( 'rtl' == $text_direction ) {
     2592            echo 'body { font-family: Tahoma, Arial; }';
     2593        }
     2594        ?>
    25932595    </style>
    25942596</head>
Note: See TracChangeset for help on using the changeset viewer.