From 78715c32e9d5fabc3a853f8b210a953bb315b6ee Mon Sep 17 00:00:00 2001 From: short <> Date: Wed, 21 Sep 2005 05:04:00 +0000 Subject: [PATCH] Fixed typo affecting JS-detection on the production site. --- HaveJS.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HaveJS.pm b/HaveJS.pm index 6b8230d..36229e0 100644 --- a/HaveJS.pm +++ b/HaveJS.pm @@ -41,8 +41,8 @@ $W->{"r"}->content_type("text/javascript"); # may not pass "have_js=1" to us anyway. (for example Google cache) print "" .'if (0'."\n" - ."\t\t".'|| window.location.hostname=="'.$W->{"W"}{"web_hostname"}.'" && window.location.port== 80'."\n" - ."\t\t".'|| window.location.hostname=="'.'localhost' .'" && window.location.port==7680)'."\n"; + ."\t\t".'|| window.location.hostname=="'.$W->{"web_hostname"}.'" && window.location.port== 80'."\n" + ."\t\t".'|| window.location.hostname=="'.'localhost' .'" && window.location.port==7680)'."\n"; print <<'HERE'; { var searchN=window.location.search; -- 1.8.3.1