Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-03-26 17:45:26 +0300
committerMorris Jobke <hey@morrisjobke.de>2019-03-26 17:45:51 +0300
commit7ac1419fc22a2200084fbf3c4ba1141c8f6f97b5 (patch)
tree1ad61d6346dc9ad59df305faa4c61e39c53ca852
parentea799cdb546e65816a70f92ead6c0c8b8166c9ef (diff)
Quote updater URLv14.0.9RC1
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 09f293c..3ee0c14 100644
--- a/index.php
+++ b/index.php
@@ -1737,7 +1737,7 @@ if(strpos($updaterUrl, 'index.php') === false) {
<li id="step-done" class="step <?php if($stepNumber >= 12) { echo 'passed-step'; }?>">
<h2>Done</h2>
<div class="output hidden">
- <a class="button" href="<?php echo str_replace('/index.php', '/../', $updaterUrl); ?>">Go back to your Nextcloud instance to finish the update</a>
+ <a class="button" href="<?php echo htmlspecialchars(str_replace('/index.php', '/../', $updaterUrl), ENT_QUOTES); ?>">Go back to your Nextcloud instance to finish the update</a>
</div>
</li>
</ul>