Changeset 42217 for trunk/src/wp-includes/load.php
- Timestamp:
- 11/23/2017 04:08:42 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r41922 r42217 212 212 header( 'Content-Type: text/html; charset=utf-8' ); 213 213 header( 'Retry-After: 600' ); 214 215 $dir_attr = ''; 216 if ( is_rtl() ) { 217 $dir_attr = ' dir="rtl"'; 218 } 214 219 ?> 215 220 <!DOCTYPE html> 216 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>221 <html xmlns="http://www.w3.org/1999/xhtml"<?php echo $dir_attr; ?>> 217 222 <head> 218 223 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Note: See TracChangeset
for help on using the changeset viewer.