Set the extension dial_string to null when the value is user_busy.

This commit is contained in:
FusionPBX
2022-01-27 00:08:41 -07:00
committed by GitHub
parent b037bf9cf4
commit ecdbc1b8be
+6 -1
View File
@@ -17,7 +17,7 @@
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-2019 Portions created by the Initial Developer are Copyright (C) 2008-2022
the Initial Developer. All Rights Reserved. the Initial Developer. All Rights Reserved.
Contributor(s): Contributor(s):
@@ -91,6 +91,11 @@
$database->execute($sql); $database->execute($sql);
unset($sql); unset($sql);
} }
//do not disturb no longer uses the extension dial_string set the value to null
$sql = "update v_extensions set dial_string = null where (dial_string = '!USER_BUSY' or dial_string = 'error/user_busy');\n";
$database->execute($sql);
unset($sql);
} }