aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-10-28 14:18:25 +0100
committerGitHub <noreply@github.com>2020-10-28 14:18:25 +0100
commit14c9370b4f712c8f5b48d46535cc3e8e5506c68a (patch)
treeced13ca280772f5e2b209a7c9fe98b02905e7750
parent1ca7ddd76bc5736b69e878ef1c6b96b77b084366 (diff)
parent114a43b20e9a1f83647d4f0f7a001e80a76c75ce (diff)
downloadShaarli-14c9370b4f712c8f5b48d46535cc3e8e5506c68a.tar.gz
Shaarli-14c9370b4f712c8f5b48d46535cc3e8e5506c68a.tar.zst
Shaarli-14c9370b4f712c8f5b48d46535cc3e8e5506c68a.zip
Merge pull request #1615 from ArthurHoaro/hotfix/save-redirect
Remove unnecessary escape of referer
-rw-r--r--application/front/controller/admin/ShaarePublishController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/front/controller/admin/ShaarePublishController.php b/application/front/controller/admin/ShaarePublishController.php
index ddcffdc7..18afc2d1 100644
--- a/application/front/controller/admin/ShaarePublishController.php
+++ b/application/front/controller/admin/ShaarePublishController.php
@@ -139,7 +139,7 @@ class ShaarePublishController extends ShaarliAdminController
139 } 139 }
140 140
141 if (!empty($request->getParam('returnurl'))) { 141 if (!empty($request->getParam('returnurl'))) {
142 $this->container->environment['HTTP_REFERER'] = escape($request->getParam('returnurl')); 142 $this->container->environment['HTTP_REFERER'] = $request->getParam('returnurl');
143 } 143 }
144 144
145 return $this->redirectFromReferer( 145 return $this->redirectFromReferer(