From: Bartosz DziewoƄski Date: Fri, 18 Apr 2014 14:39:37 +0000 (+0200) Subject: WebInstallerOutput: Fix path to jquery.js X-Git-Tag: 1.31.0-rc.0~16157^2 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=ebcfbdfd87734858c26eee5ce3f0c965ce7a8af3;p=lhc%2Fweb%2Fwiklou.git WebInstallerOutput: Fix path to jquery.js Follow-up to Id5ead145 and I335e4c08. Bug: 64091 Change-Id: If40f479df7d68071d6ce5d2f3b8251e6bf3eb80e --- diff --git a/includes/installer/WebInstallerOutput.php b/includes/installer/WebInstallerOutput.php index 7a7f1259d6..e8b5b3bc46 100644 --- a/includes/installer/WebInstallerOutput.php +++ b/includes/installer/WebInstallerOutput.php @@ -364,7 +364,7 @@ class WebInstallerOutput { * @return string */ public function getJQuery() { - return Html::linkedScript( "../resources/src/jquery/jquery.js" ); + return Html::linkedScript( "../resources/lib/jquery/jquery.js" ); } }