Add some RTL misses for setup-config. props SergeyBiryukov, fixes #18180.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19860 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-02-08 05:55:54 +00:00
parent 4d600fe454
commit 0f8515abd9
2 changed files with 4 additions and 4 deletions

View File

@ -239,7 +239,7 @@ body.rtl {
} }
.rtl ul, .rtl ul,
.rtl ol { .rtl ol {
padding: 5px 22px 5px 5px; padding: 5px 22px 5px 5px;
} }
@ -259,7 +259,7 @@ body.rtl {
.rtl #uname, .rtl #uname,
.rtl #pwd, .rtl #pwd,
.rtl #dbhost, .rtl #dbhost,
.rtl prefix, .rtl #prefix,
.rtl #user_login, .rtl #user_login,
.rtl #admin_email, .rtl #admin_email,
.rtl #pass1, .rtl #pass1,

View File

@ -81,14 +81,14 @@ function display_header() {
header( 'Content-Type: text/html; charset=utf-8' ); header( 'Content-Type: text/html; charset=utf-8' );
?> ?>
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php _e( 'WordPress &rsaquo; Setup Configuration File' ); ?></title> <title><?php _e( 'WordPress &rsaquo; Setup Configuration File' ); ?></title>
<link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" /> <link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" />
</head> </head>
<body> <body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>>
<h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1> <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
<?php <?php
}//end function display_header(); }//end function display_header();