From 5b16c7a25d5031d727de56cb11f86f0656e2e2c0 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 11 Aug 2012 20:53:56 +0200 Subject: [PATCH] This is unnessecary because we already run htmlentities() over the template engine --- apps/files_versions/history.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php index a34c92ee42..27dc8bfc38 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();