Respect des balises HTML
This commit is contained in:
parent
18343841ff
commit
2dac8dcd1e
@ -99,15 +99,17 @@ Cette entreprise est une personne physique exerçant son activité en nom propre
|
||||
?>
|
||||
</td>
|
||||
<td class="lienfiche" id="<?=$lien->idFiche?>">
|
||||
<?php if (intval($lien->siren)!=0) {?>
|
||||
<a class="lienNom" href="<?=$this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'liens',
|
||||
'siret'=>$lien->siren), 'default', true)?>">
|
||||
<?php } else {?>
|
||||
<a class="lienNom" href="<?=$this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'liens',
|
||||
'lienref'=>$lien->idFiche), 'default', true)?>">
|
||||
<?php }?>
|
||||
<?=$lien->nom?>
|
||||
<?php if($lien->sigle) echo " (".$lien->sigle.")"; ?>
|
||||
<?php if (intval($lien->siren)!=0) {
|
||||
$href = $this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'liens',
|
||||
'siret'=>$lien->siren), 'default', true);
|
||||
} else {
|
||||
$href = $this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'liens',
|
||||
'lienref'=>$lien->idFiche), 'default', true);
|
||||
}
|
||||
?>
|
||||
<a class="lienNom" href="<?=$href?>">
|
||||
<?=$lien->nom?>
|
||||
<?php if($lien->sigle) echo " (".$lien->sigle.")"; ?>
|
||||
</a>
|
||||
</td>
|
||||
<td width="200">
|
||||
|
Loading…
Reference in New Issue
Block a user