Changeset 923
- Timestamp:
- 03/20/07 09:49:24 (2 years ago)
- Files:
-
- trunk/wp-content/themes/default/header.php (modified) (1 diff)
- trunk/wp-content/themes/default/images/kubrickbg-ltr.jpg (added)
- trunk/wp-content/themes/default/images/kubrickbg-rtl.jpg (added)
- trunk/wp-content/themes/default/images/kubrickbg.jpg (deleted)
- trunk/wp-content/themes/default/rtl.css (added)
- trunk/wp-includes/locale.php (modified) (1 diff)
- trunk/wp-includes/vars.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-content/themes/default/header.php
r850 r923 19 19 if ( !$withcomments && !is_single() ) { 20 20 ?> 21 #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg .jpg") repeat-y top; border: none; }21 #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; } 22 22 <?php } else { // No sidebar ?> 23 23 #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; } trunk/wp-includes/locale.php
r832 r923 13 13 var $meridiem; 14 14 15 var $text_direction = ' ';15 var $text_direction = 'ltr'; 16 16 var $locale_vars = array('text_direction'); 17 17 trunk/wp-includes/vars.php
r916 r923 20 20 } elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false) { 21 21 $is_gecko = true; 22 } elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Win') ) {22 } elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Win') !== false) { 23 23 $is_winIE = true; 24 24 } elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false) {
