This is unnessecary because we already run htmlentities() over the template engine

This commit is contained in:
Lukas Reschke 2012-08-11 20:53:56 +02:00
parent bd90b7eaca
commit 5b16c7a25d
1 changed files with 1 additions and 1 deletions

View File

@ -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();