Update cmd.php

This commit is contained in:
FusionPBX
2017-08-28 01:52:40 -06:00
committed by GitHub
parent 4d88d429df
commit 29a6712936
+17 -13
View File
@@ -17,22 +17,26 @@
The Initial Developer of the Original Code is The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2014 Portions created by the Initial Developer are Copyright (C) 2008-2017
the Initial Developer. All Rights Reserved. the Initial Developer. All Rights Reserved.
Contributor(s): Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
*/ */
include "root.php";
require_once "resources/require.php"; //includes
require_once "resources/check_auth.php"; include "root.php";
if (permission_exists("registration_domain") || permission_exists("registration_all") || if_group("superadmin")) { require_once "resources/require.php";
//access granted require_once "resources/check_auth.php";
}
else { //permissions
echo "access denied"; if (permission_exists("registration_domain") || permission_exists("registration_all") || if_group("superadmin")) {
exit; //access granted
} }
else {
echo "access denied";
exit;
}
//add multi-lingual support //add multi-lingual support
$language = new text; $language = new text;
@@ -77,7 +81,7 @@ else {
echo $response; echo $response;
} }
else { else {
header("Location: status_registrations.php?profile=".$profile."&show=".$show); header("Location: registrations.php?profile=".$profile."&show=".$show);
} }
?> ?>