Update extension_edit.php

This commit is contained in:
FusionPBX 2018-02-06 13:42:20 -07:00 committed by GitHub
parent d32488b2af
commit ffbd9dce11
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
Copyright (C) 2008-2016 All Rights Reserved.
Copyright (C) 2008-2018 All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
@ -1459,7 +1459,7 @@
echo " <select class='formfld' name='call_group'>\n";
echo " <option value=''></option>\n";
foreach ($_SESSION['call group']['name'] as $name) {
if ($_SESSION['call group']['name'] == $call_group) {
if ($name == $call_group) {
echo " <option value='$name' selected='selected'>$name</option>\n";
}
else {