Fix minori
This commit is contained in:
parent
dd2966f9fd
commit
b17a5e528d
|
@ -52,7 +52,7 @@ foreach ($righe as $riga) {
|
|||
// Seriali
|
||||
$seriali = $riga->serials;
|
||||
if (!empty($seriali)) {
|
||||
$text = tr('SN').': '.implode($seriali, ', ');
|
||||
$text = tr('SN').': '.implode(', ', $seriali);
|
||||
echo '
|
||||
<br><small>'.$text.'</small>';
|
||||
|
||||
|
|
|
@ -48,6 +48,8 @@ if (!empty($documento['idsede_destinazione'])) {
|
|||
if (!empty($rsd[0]['provincia'])) {
|
||||
$destinazione .= ' ('.$rsd[0]['provincia'].')';
|
||||
}
|
||||
|
||||
$settings['header-height'] += 8;
|
||||
}
|
||||
|
||||
// Sostituzioni specifiche
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'header-height' => 80,
|
||||
'header-height' => 67,
|
||||
'footer-height' => 80,
|
||||
];
|
||||
|
|
|
@ -52,7 +52,7 @@ foreach ($righe as $riga) {
|
|||
// Seriali
|
||||
$seriali = $riga->serials;
|
||||
if (!empty($seriali)) {
|
||||
$text = tr('SN').': '.implode($seriali, ', ');
|
||||
$text = tr('SN').': '.implode(', ', $seriali);
|
||||
echo '
|
||||
<br><small>'.$text.'</small>';
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ foreach ($righe as $riga) {
|
|||
// Seriali
|
||||
$seriali = $riga->serials;
|
||||
if (!empty($seriali)) {
|
||||
$text = tr('SN').': '.implode($seriali, ', ');
|
||||
$text = tr('SN').': '.implode(', ', $seriali);
|
||||
echo '
|
||||
<br><small>'.$text.'</small>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue