From 8f3b18f27f1c8daee3f06f457eaf3587db22c96e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 14:53:20 -0400 Subject: [PATCH] fix copy-and-paste error in javascript url creation --- lib/htmloutputter.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 4a1b7db472..42bff44908 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -393,10 +393,7 @@ class HTMLOutputter extends XMLOutputter $path = common_config('javascript', 'path'); if (empty($path)) { - $path = common_config('site', 'path') . '/'; - if ($fallbackSubdir) { - $path .= $fallbackSubdir . '/'; - } + $path = common_config('site', 'path') . '/js/'; } $server = common_config('javascript', 'server');