mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Fix new line
This commit is contained in:
parent
3898db3956
commit
2d73dc8f5c
|
|
@ -3036,14 +3036,16 @@ if ($action == 'editmeta' || $action == 'createcontainer')
|
|||
{
|
||||
print '<span class="opacitymedium">'.$langs->trans('ThisPageHasTranslationPages').':</span><br>';
|
||||
$i = 0;
|
||||
$tmppage = new WebsitePage($db);
|
||||
while ($obj = $db->fetch_object($resql))
|
||||
{
|
||||
$tmppage = new WebsitePage($db);
|
||||
$tmppage->fetch($obj->rowid);
|
||||
if ($i > 0) print ' - ';
|
||||
print $tmppage->getNomUrl(1).' ('.$tmppage->lang.')<br>';
|
||||
$translatedby++;
|
||||
$i++;
|
||||
$result = $tmppage->fetch($obj->rowid);
|
||||
if ($result > 0) {
|
||||
if ($i > 0) print '<br>';
|
||||
print $tmppage->getNomUrl(1).' ('.$tmppage->lang.')';
|
||||
$translatedby++;
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user