Update destination_imports.php
This commit is contained in:
parent
fadd207dcf
commit
1cea9cca79
|
|
@ -758,8 +758,12 @@
|
||||||
foreach($schema as $row) {
|
foreach($schema as $row) {
|
||||||
echo " <optgroup label='".$row['table']."'>\n";
|
echo " <optgroup label='".$row['table']."'>\n";
|
||||||
foreach($row['fields'] as $field) {
|
foreach($row['fields'] as $field) {
|
||||||
if (substr($field, -5) != '_uuid') {
|
$selected = '';
|
||||||
echo " <option value='".$row['table'].".$field'>$field</option>\n";
|
if ($field == $line_field) {
|
||||||
|
$selected = "selected='selected'";
|
||||||
|
}
|
||||||
|
if ($field !== 'domain_uuid') {
|
||||||
|
echo " <option value='".$row['table'].".".$field."' ".$selected.">".$field."</option>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo " </optgroup>\n";
|
echo " </optgroup>\n";
|
||||||
|
|
@ -1022,4 +1026,4 @@
|
||||||
//include the footer
|
//include the footer
|
||||||
require_once "resources/footer.php";
|
require_once "resources/footer.php";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue