X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FWebInstallerOutput.php;h=cbfa34f2411ca45ee060dced446580fc102d38f3;hb=96764fbc9a67fa6040c6123d31ac3746fc6fd98f;hp=7a7f1259d627dfad579c9b4860781e527642ee42;hpb=543723c79254c66f6b6c6e387aa4fc326a697f0e;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstallerOutput.php b/includes/installer/WebInstallerOutput.php index 7a7f1259d6..cbfa34f241 100644 --- a/includes/installer/WebInstallerOutput.php +++ b/includes/installer/WebInstallerOutput.php @@ -43,7 +43,7 @@ class WebInstallerOutput { /** * Buffered contents that haven't been output yet - * @var String + * @var string */ private $contents = ''; @@ -127,7 +127,7 @@ class WebInstallerOutput { * * @param string $dir 'ltr' or 'rtl' * - * @return String + * @return string */ public function getCSS( $dir ) { // All CSS files these modules reference will be concatenated in sequence @@ -210,7 +210,7 @@ class WebInstallerOutput { /** * "" to index.php?css=foobar for the "" * - * @return String + * @return string */ private function getCssUrl() { return Html::linkedStyle( $_SERVER['PHP_SELF'] . '?css=' . $this->getDir() ); @@ -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" ); } }