From: Alexander Ebert Date: Mon, 16 Jan 2012 17:16:39 +0000 (+0100) Subject: Changed installation URL into

X-Git-Tag: 2.0.0_Beta_1~1425^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c647d5818c3fe4e7353e427349772d51ff035abc;p=GitHub%2FWoltLab%2FWCF.git Changed installation URL into

@Luzifr: JavaScript relies on the ID, not the tag so you can exchange it any time (changing it into an input-field would require further work) --- diff --git a/wcfsetup/setup/template/stepSearchWcfDir.tpl b/wcfsetup/setup/template/stepSearchWcfDir.tpl index c5e297ebb4..86aba77dd8 100644 --- a/wcfsetup/setup/template/stepSearchWcfDir.tpl +++ b/wcfsetup/setup/template/stepSearchWcfDir.tpl @@ -46,7 +46,7 @@ for (var $i = 0; $i < $relativePathDirs.length; $i++) { if ($relativePathDirs[$i] == '..') { if ($installScriptUrlDirs.length < 1) { - $wcfUrl.val($invalidErrorMessage); + $wcfUrl.html($invalidErrorMessage); return; } @@ -60,7 +60,7 @@ // implode and show result var $result = $domainName; for (var $i = 0; $i < $installScriptUrlDirs.length; $i++) $result += '/' + $installScriptUrlDirs[$i]; - $wcfUrl.val($result); + $wcfUrl.html($result); } function removeEmptyDirParts(dir) { @@ -107,7 +107,7 @@