Update
This commit is contained in:
parent
aa7ed46939
commit
ae293c932e
|
|
@ -111,7 +111,9 @@
|
||||||
echo " <input type='hidden' name='bridge_uuid' value='".$bridge_uuid."'>\n";
|
echo " <input type='hidden' name='bridge_uuid' value='".$bridge_uuid."'>\n";
|
||||||
foreach ($_SESSION['cdr']['field'] as $field) {
|
foreach ($_SESSION['cdr']['field'] as $field) {
|
||||||
if (isset($_REQUEST[$field])) {
|
if (isset($_REQUEST[$field])) {
|
||||||
echo " <input type='hidden' name='$field' value='".$$field."'>\n";
|
$array = explode(",", $field);
|
||||||
|
$field_name = $array[count($array) - 1];
|
||||||
|
echo " <input type='hidden' name='$field_name' value='".$$field_name."'>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isset($order_by)) {
|
if (isset($order_by)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue