Update and rename foldernew.php to folder_new.php

This commit is contained in:
FusionPBX 2019-08-21 01:23:42 -06:00 committed by GitHub
parent 026c3958c3
commit cad71240de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -25,12 +25,15 @@
James Rose <james.o.rose@gmail.com>
*/
//disable this feature
exit;
//includes
include "root.php";
require_once "resources/require.php";
require_once "resources/check_auth.php";
//check permissions
//check permissions
if (permission_exists('script_editor_save')) {
//access granted
}
@ -61,7 +64,7 @@
//create new folder
mkdir($folder.'/'.$foldername); //, 0700
header("Location: fileoptions.php");
header("Location: file_options.php");
}
else {