Skip to:
Content

bbPress.org


Ignore:
Timestamp:
10/16/2006 06:26:02 PM (20 years ago)
Author:
mdawaffe
Message:

RTL support props Sewar. Fixes #440

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-admin/admin-header.php

    r342 r482  
    11<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php _e('en'); ?>">
     2<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    33<head>
    44    <title><?php bb_admin_title() ?></title>
    55    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    6     <style type="text/css">
    7      @import url(<?php option('uri'); ?>bb-admin/style.css);
    8     </style>
     6    <link rel="stylesheet" href="<?php option('uri'); ?>bb-admin/style.css" type="text/css" />
     7<?php global $bb_locale; if ( ('rtl' == $bb_locale->text_direction) ) : ?>
     8    <link rel="stylesheet" href="<?php option('uri'); ?>bb-admin/style-rtl.css" type="text/css" />
     9<?php endif; ?>
    910</head>
    1011
Note: See TracChangeset for help on using the changeset viewer.