From 267d7f9a968efdffb9a260478df9b4132df6918c Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 12 Feb 2026 17:41:28 -0700 Subject: [PATCH] When UNREGISTER is press don't reboot There is also a REBOOT button --- app/registrations/resources/classes/registrations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/registrations/resources/classes/registrations.php b/app/registrations/resources/classes/registrations.php index 66e1ea180b..a2e9126b08 100644 --- a/app/registrations/resources/classes/registrations.php +++ b/app/registrations/resources/classes/registrations.php @@ -407,7 +407,7 @@ class registrations { if (!empty($profile) && $user) { switch ($action) { case 'unregister': - $command = "sofia profile " . $profile . " flush_inbound_reg " . $user . " reboot"; + $command = "sofia profile " . $profile . " flush_inbound_reg " . $user; $response_message = $text['message-registrations_unregistered']; break; case 'provision':