Ticket #18180: 18180.7.diff
File 18180.7.diff, 1.3 KB (added by , 13 years ago) |
---|
-
wp-admin/css/install.dev.css
239 239 } 240 240 241 241 .rtl ul, 242 .rtl 242 .rtl ol { 243 243 padding: 5px 22px 5px 5px; 244 244 } 245 245 … … 259 259 .rtl #uname, 260 260 .rtl #pwd, 261 261 .rtl #dbhost, 262 .rtl prefix,262 .rtl #prefix, 263 263 .rtl #user_login, 264 264 .rtl #admin_email, 265 265 .rtl #pass1, -
wp-admin/setup-config.php
81 81 header( 'Content-Type: text/html; charset=utf-8' ); 82 82 ?> 83 83 <!DOCTYPE html> 84 <html xmlns="http://www.w3.org/1999/xhtml" >84 <html xmlns="http://www.w3.org/1999/xhtml" <?php if ( is_rtl() ) echo 'dir="rtl"'; ?>> 85 85 <head> 86 86 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 87 87 <title><?php _e( 'WordPress › Setup Configuration File' ); ?></title> 88 88 <link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" /> 89 89 90 90 </head> 91 <body >91 <body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>> 92 92 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1> 93 93 <?php 94 94 }//end function display_header();