diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-08-11 20:53:56 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-08-11 20:53:56 +0200 |
commit | 5b16c7a25d5031d727de56cb11f86f0656e2e2c0 (patch) | |
tree | 69d5563d836368a2f5d18a100e4df90c692df99e | |
parent | bd90b7eacae3317b0af4283254b21bba98a9624d (diff) | |
download | nextcloud-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.php | 2 |
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(); |