From 494664f59864d2d123e00f71cde76c20aa10349f Mon Sep 17 00:00:00 2001 From: Alex <40072887+alexdcrane@users.noreply.github.com> Date: Mon, 4 May 2026 16:57:34 +0000 Subject: [PATCH] Fix: Stop incrementing MWI Account when adding extensions (#7950) - MWI Account is empty by default. - When adding multiple extensions with the range, the MWI Account should be the same on all of them. --- app/extensions/extension_edit.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/extensions/extension_edit.php b/app/extensions/extension_edit.php index 674dd18db..6329da88a 100644 --- a/app/extensions/extension_edit.php +++ b/app/extensions/extension_edit.php @@ -834,13 +834,6 @@ if (!empty($_POST) && empty($_POST["persistformvar"])) { $number_alias++; $voicemail_id = $number_alias; } - - if (!empty($mwi_account)) { - $mwi_account_array = explode('@', $mwi_account); - $mwi_account_array[0]++; - $mwi_account = implode('@', $mwi_account_array); - unset($mwi_account_array); - } } }