Fix: Missing tr line

This commit is contained in:
Laurent Destailleur
2013-07-23 15:26:35 +02:00
parent 2e7205f309
commit cbeeb463e2
2 changed files with 13 additions and 6 deletions

View File

@@ -554,10 +554,14 @@ class FormFile
$out .= $hookmanager->resPrint;
}
}
$out.= '</tr>';
}
$out.= '</tr>';
if (count($file_list) == 0)
{
$out.='<tr><td colspan="3">'.$langs->trans("None").'</td></tr>';
}
$this->numoffiles++;
}
}