Call exit() to prevent further code execution if directory does not exist

This commit is contained in:
Michael Gapczynski 2012-07-10 18:59:42 -04:00 committed by Jörn Friedrich Dreyer
parent ef1924dbbb
commit 0b14b4e3e8
1 changed files with 1 additions and 0 deletions

View File

@ -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['PHP_SELF'].'');
exit();
}
$files = array();