summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-08-11 20:53:56 +0200
committerLukas Reschke <lukas@statuscode.ch>2012-08-11 20:53:56 +0200
commit5b16c7a25d5031d727de56cb11f86f0656e2e2c0 (patch)
tree69d5563d836368a2f5d18a100e4df90c692df99e
parentbd90b7eacae3317b0af4283254b21bba98a9624d (diff)
downloadnextcloud-server-5b16c7a25d5031d727de56cb11f86f0656e2e2c0.tar.gz
nextcloud-server-5b16c7a25d5031d727de56cb11f86f0656e2e2c0.zip
This is unnessecary because we already run htmlentities() over the template engine
-rw-r--r--apps/files_versions/history.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php
index a34c92ee422..27dc8bfc382 100644
--- a/apps/files_versions/history.php
+++ b/apps/files_versions/history.php
@@ -28,7 +28,7 @@ $tmpl = new OCP\Template( 'files_versions', 'history', 'user' );
if ( isset( $_GET['path'] ) ) {
$path = $_GET['path'];
- $path = strip_tags( $path );
+ $path = $path;
$tmpl->assign( 'path', $path );
$versions = new OCA_Versions\Storage();