Ticket #16852: 16852.diff
File 16852.diff, 581 bytes (added by , 14 years ago) |
---|
-
wp-includes/general-template.php
1890 1890 $attributes = array(); 1891 1891 $output = ''; 1892 1892 1893 if ( function_exists( 'is_rtl' ) )1894 $attributes[] = 'dir="' . ( is_rtl() ? 'rtl' : 'ltr' ) . '"';1893 if ( function_exists( 'is_rtl' ) && is_rtl() ) 1894 $attributes[] = 'dir="rtl"'; 1895 1895 1896 1896 if ( $lang = get_bloginfo('language') ) { 1897 1897 if ( get_option('html_type') == 'text/html' || $doctype == 'html' )