summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-20 03:18:41 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-20 03:18:41 +0000
commitfcc8211ab1331a4c6fa501d6b1a23e3c82c75423 (patch)
tree380cde4e8b5f5f723a1830e1511333d29abd3622 /themes
parent0ec23b9b431108365bba4792e034a0f151e88ddc (diff)
downloadbrdo-fcc8211ab1331a4c6fa501d6b1a23e3c82c75423.tar.gz
brdo-fcc8211ab1331a4c6fa501d6b1a23e3c82c75423.tar.bz2
#203323 by JirkaRybka, robertgarrigos, thePanz, c960657, and sun: Fix undefined index locale in install.php and clean up crufty code.
Diffstat (limited to 'themes')
-rw-r--r--themes/garland/template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/garland/template.php b/themes/garland/template.php
index 016a1e4e7..16b4d2857 100644
--- a/themes/garland/template.php
+++ b/themes/garland/template.php
@@ -92,7 +92,7 @@ function garland_get_ie_styles() {
global $language;
$ie_styles = '<link type="text/css" rel="stylesheet" media="all" href="' . base_path() . path_to_theme() . '/fix-ie.css" />'. "\n";
- if (defined('LANGUAGE_RTL') && $language->direction == LANGUAGE_RTL) {
+ if ($language->direction == LANGUAGE_RTL) {
$ie_styles .= ' <style type="text/css" media="all">@import "' . base_path() . path_to_theme() . '/fix-ie-rtl.css";</style>'. "\n";
}