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

git-svn-id: https://develop.svn.wordpress.org/trunk@19860 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-02-08 05:55:54 +00:00
parent cd097b5b6a
commit 958b85d7a4
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -81,14 +81,14 @@ function display_header() {
header( 'Content-Type: text/html; charset=utf-8' );
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<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" />
</head>
<body>
<body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>>
<h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
<?php
}//end function display_header();