Fix the label for the custom select destination.
This commit is contained in:
parent
6b665af51c
commit
1756b6064f
|
|
@ -224,7 +224,9 @@ class destinations {
|
|||
}
|
||||
}
|
||||
if (!$select_found) {
|
||||
$response .= " <option value='".$select_value."' selected='selected'>".trim($select_label)."</option>\n";
|
||||
$destination_label = str_replace(":", " ", $destination_value);
|
||||
$destination_label = str_replace("menu-exec-app:", " ", $destination_label);
|
||||
$response .= " <option value='".$destination_value."' selected='selected'>".trim($destination_label)."</option>\n";
|
||||
}
|
||||
$response .= " </select>\n";
|
||||
if (if_group("superadmin")) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue