diff --git a/htdocs/imports/import.php b/htdocs/imports/import.php
index c12b5746e82..da917c31044 100644
--- a/htdocs/imports/import.php
+++ b/htdocs/imports/import.php
@@ -1016,7 +1016,7 @@ if ($step == 4 && $datatoimport) {
//var_dump($array_match_file_to_database);
- print '
| ';
+ print ' |
| ';
$fieldsplaced = array();
$valforsourcefieldnb = array();
@@ -1047,6 +1047,7 @@ if ($step == 4 && $datatoimport) {
//var_dump($valforsourcefieldnb);
// Complete source fields from count($fieldssource)+1 to count($fieldstarget)
+ /*
$more = 1;
$num = count($fieldssource);
while ($lefti <= $num) {
@@ -1058,12 +1059,13 @@ if ($step == 4 && $datatoimport) {
$lefti++;
$more++;
}
+ */
print "\n";
print "\n";
- print ' | ';
+ print ' | ';
// List of target fields
$optionsnotused = "";
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index d01e3b8d55d..ab0e9ff4b87 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -818,6 +818,12 @@ textarea.centpercent {
.nopaddingright {
padding-right: 0;
}
+.nopaddingleftimp {
+ padding-left: 0 !important;
+}
+.nopaddingrightimp {
+ padding-right: 0 !important;
+}
.paddingleft {
padding-: 4px;
}
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index fe54b2365b5..0d6801a120b 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -969,6 +969,12 @@ textarea.centpercent {
.nopaddingright {
padding-right: 0;
}
+.nopaddingleftimp {
+ padding-left: 0 !important;
+}
+.nopaddingrightimp {
+ padding-right: 0 !important;
+}
.paddingleft {
padding-: 4px;
}
|