From 9188d2a8448d591aad735302f7a6a2ef9f81f186 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Sat, 18 Aug 2012 14:57:19 +0200 Subject: [PATCH] Add a missing exit(); --- apps/files/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files/index.php b/apps/files/index.php index 077187fbc13..f6a1c4bfb4c 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -40,6 +40,7 @@ $dir = isset( $_GET['dir'] ) ? stripslashes($_GET['dir']) : ''; // Redirect if directory does not exist if(!OC_Filesystem::is_dir($dir.'/')) { header('Location: '.$_SERVER['SCRIPT_NAME'].''); + exit(); } $files = array(); -- GitLab