summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatthew.gregg <matthew.gregg@gmail.com>2008-06-24 13:13:05 -0400
committermatthew.gregg <matthew.gregg@gmail.com>2008-06-24 13:13:05 -0400
commita9cf27c4e69b8ab3f2f276af6e8459f00a30367f (patch)
tree12f0bbbcceaf39ceaa1f4274cf39cd890544f661
parent25dad58d427a6c0608a99f437acb0f6e2abff47f (diff)
Missing quote in the conditional CSS for IE browsers. Fix for http://laconi.ca/PITS/00104
darcs-hash:20080624171305-982e4-732e5d4f9ad5d92145c6cbc7568ef9393e962dfb.gz
-rw-r--r--lib/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index 6bcdc31ce..e865a2b41 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -163,7 +163,7 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=
if (file_exists(theme_file('ie'.$ver.'.css'))) {
# Yes, IE people should be put in jail.
$xw->writeComment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
- 'href="'.theme_path('ie'.$ver.'.css').' /><![endif]');
+ 'href="'.theme_path('ie'.$ver.'.css').'" /><![endif]');
}
}