Skip to content

Commit

Permalink
Add some RTL misses for setup-config. props SergeyBiryukov, fixes #18…
Browse files Browse the repository at this point in the history
…180.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19860 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
nacin committed Feb 8, 2012
1 parent 4d600fe commit 0f8515a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions wp-admin/css/install.dev.css
Expand Up @@ -239,7 +239,7 @@ body.rtl {
}

.rtl ul,
.rtl ol {
.rtl ol {
padding: 5px 22px 5px 5px;
}

Expand All @@ -259,7 +259,7 @@ body.rtl {
.rtl #uname,
.rtl #pwd,
.rtl #dbhost,
.rtl prefix,
.rtl #prefix,
.rtl #user_login,
.rtl #admin_email,
.rtl #pass1,
Expand Down
4 changes: 2 additions & 2 deletions wp-admin/setup-config.php
Expand Up @@ -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();
Expand Down

0 comments on commit 0f8515a

Please sign in to comment.