Make WordPress Core

Ticket #18180: 18180.7.diff

File 18180.7.diff, 1.3 KB (added by SergeyBiryukov, 13 years ago)
  • wp-admin/css/install.dev.css

     
    239239}
    240240
    241241.rtl ul,
    242 .rtl  ol {
     242.rtl ol {
    243243        padding: 5px 22px 5px 5px;
    244244}
    245245
     
    259259.rtl #uname,
    260260.rtl #pwd,
    261261.rtl #dbhost,
    262 .rtl prefix,
     262.rtl #prefix,
    263263.rtl #user_login,
    264264.rtl #admin_email,
    265265.rtl #pass1,
  • wp-admin/setup-config.php

     
    8181        header( 'Content-Type: text/html; charset=utf-8' );
    8282?>
    8383<!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"'; ?>>
    8585<head>
    8686<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    8787<title><?php _e( 'WordPress &rsaquo; Setup Configuration File' ); ?></title>
    8888<link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" />
    8989
    9090</head>
    91 <body>
     91<body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>>
    9292<h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
    9393<?php
    9494}//end function display_header();