Use call group singular instead of plural.

This commit is contained in:
markjcrane 2016-01-13 16:40:26 -07:00
parent 31c00fb584
commit 9c5eb3faea
1 changed files with 2 additions and 2 deletions

View File

@ -1678,10 +1678,10 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
echo " ".$text['label-call_group']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
if (is_array($_SESSION['toll allow']['name'])) {
if (is_array($_SESSION['call group']['name'])) {
echo " <select class='formfld' style='display: none; width: auto; margin-left: 3px;' name='call_group' id='call_group'>\n";
echo " <option value=''></option>\n";
foreach ($_SESSION['call groups']['name'] as $name) {
foreach ($_SESSION['call group']['name'] as $name) {
echo " <option value='$name'>$name</option>\n";
}
echo " </select>\n";