Fix minori

This commit is contained in:
Thomas Zilio 2019-07-12 13:04:28 +02:00
parent dd2966f9fd
commit b17a5e528d
5 changed files with 6 additions and 4 deletions

View File

@ -52,7 +52,7 @@ foreach ($righe as $riga) {
// Seriali // Seriali
$seriali = $riga->serials; $seriali = $riga->serials;
if (!empty($seriali)) { if (!empty($seriali)) {
$text = tr('SN').': '.implode($seriali, ', '); $text = tr('SN').': '.implode(', ', $seriali);
echo ' echo '
<br><small>'.$text.'</small>'; <br><small>'.$text.'</small>';

View File

@ -48,6 +48,8 @@ if (!empty($documento['idsede_destinazione'])) {
if (!empty($rsd[0]['provincia'])) { if (!empty($rsd[0]['provincia'])) {
$destinazione .= ' ('.$rsd[0]['provincia'].')'; $destinazione .= ' ('.$rsd[0]['provincia'].')';
} }
$settings['header-height'] += 8;
} }
// Sostituzioni specifiche // Sostituzioni specifiche

View File

@ -1,6 +1,6 @@
<?php <?php
return [ return [
'header-height' => 80, 'header-height' => 67,
'footer-height' => 80, 'footer-height' => 80,
]; ];

View File

@ -52,7 +52,7 @@ foreach ($righe as $riga) {
// Seriali // Seriali
$seriali = $riga->serials; $seriali = $riga->serials;
if (!empty($seriali)) { if (!empty($seriali)) {
$text = tr('SN').': '.implode($seriali, ', '); $text = tr('SN').': '.implode(', ', $seriali);
echo ' echo '
<br><small>'.$text.'</small>'; <br><small>'.$text.'</small>';

View File

@ -89,7 +89,7 @@ foreach ($righe as $riga) {
// Seriali // Seriali
$seriali = $riga->serials; $seriali = $riga->serials;
if (!empty($seriali)) { if (!empty($seriali)) {
$text = tr('SN').': '.implode($seriali, ', '); $text = tr('SN').': '.implode(', ', $seriali);
echo ' echo '
<br><small>'.$text.'</small>'; <br><small>'.$text.'</small>';