mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-21 18:36:31 +00:00
Update the memcache reference to use the new cache PHP class.
This commit is contained in:
@@ -41,10 +41,24 @@ else {
|
||||
}
|
||||
|
||||
//check for the id
|
||||
if (count($_GET)>0) {
|
||||
$id = $_GET["id"];
|
||||
if (count($_GET) > 0) {
|
||||
$id = check_str($_GET["id"]);
|
||||
}
|
||||
if (strlen($id)>0) {
|
||||
if (strlen($id) > 0) {
|
||||
|
||||
//get the user_context
|
||||
$sql = "select extension, user_context from v_extensions ";
|
||||
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
||||
$sql .= "and extension_uuid = '$id' ";
|
||||
$prep_statement = $db->prepare(check_sql($sql));
|
||||
$prep_statement->execute();
|
||||
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||||
foreach ($result as &$row) {
|
||||
$extension = $row["extension"];
|
||||
$user_context = $row["user_context"];
|
||||
}
|
||||
unset ($prep_statement);
|
||||
|
||||
//delete the extension
|
||||
$sql = "delete from v_extensions ";
|
||||
$sql .= "where domain_uuid = '$domain_uuid' ";
|
||||
@@ -60,17 +74,20 @@ else {
|
||||
$prep_statement->execute();
|
||||
unset($prep_statement, $sql);
|
||||
|
||||
//clear the cache
|
||||
$cache = new cache;
|
||||
$cache->delete("directory:".$extension."@".$user_context);
|
||||
|
||||
//synchronize configuration
|
||||
if (is_readable($_SESSION['switch']['extensions']['dir'])) {
|
||||
require_once "app/extensions/resources/classes/extension.php";
|
||||
$extension = new extension;
|
||||
$extension->xml();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$_SESSION["message"] = $text['message-delete'];
|
||||
header("Location: extensions.php");
|
||||
return;
|
||||
//redirect the browser
|
||||
$_SESSION["message"] = $text['message-delete'];
|
||||
header("Location: extensions.php");
|
||||
return;
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user