Kaynağa Gözat

Update and rename foldernew.php to folder_new.php

FusionPBX 6 yıl önce
ebeveyn
işleme
b8b37e7280
1 değiştirilmiş dosya ile 5 ekleme ve 2 silme
  1. 5 2
      folder_new.php

+ 5 - 2
foldernew.php → folder_new.php

@@ -25,12 +25,15 @@
 	James Rose <[email protected]>
 */
 
+//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 {