Update exec.php
This commit is contained in:
parent
a53e3eeba4
commit
1b36d1c6ba
|
|
@ -51,10 +51,10 @@
|
|||
|
||||
//http get variables set to php variables
|
||||
if (count($_GET) > 0) {
|
||||
$switch_cmd = trim(check_str($_GET["cmd"]));
|
||||
$action = trim(check_str($_GET["action"]));
|
||||
$data = trim(check_str($_GET["data"]));
|
||||
$direction = trim(check_str($_GET["direction"]));
|
||||
$switch_cmd = trim($_GET["cmd"]);
|
||||
$action = trim($_GET["action"]);
|
||||
$data = trim($_GET["data"]);
|
||||
$direction = trim($_GET["direction"]);
|
||||
$username = $_SESSION['username'];
|
||||
}
|
||||
|
||||
|
|
@ -137,7 +137,6 @@ if (count($_GET) >0) {
|
|||
return;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
//set the status so they are compatible with mod_callcenter
|
||||
$switch_cmd = str_replace("Available_On_Demand", "'Available (On Demand)'", $switch_cmd);
|
||||
|
|
|
|||
Loading…
Reference in New Issue