Call exit() to prevent further code execution if directory does not exist
This commit is contained in:
parent
e7a0c4f0bb
commit
ca04c1a0f8
1 changed files with 1 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue