Task #0000839: Réécriture de la procédure d'installation

Setup.php en partie réécrit
Tous les tags <? ont été changés en <?php pour les servers mutualisés
This commit is contained in:
Dany De Bontridder 2013-05-16 21:34:17 +00:00
parent 9e950ba8bc
commit e6a2f2935d
84 changed files with 929 additions and 927 deletions

View file

@ -70,27 +70,27 @@ $gDossier=dossier::id();
</th>
</tr>
<? for ($e=0;$e<count($a_change);$e++): ?>
<? $class=($e%2==0)?' class="even" ':' class="odd" '; ?>
<tr <?=$class?>>
<?php for ($e=0;$e<count($a_change);$e++): ?>
<?php $class=($e%2==0)?' class="even" ':' class="odd" '; ?>
<tr <?php echo $class?>>
<td>
<?= $a_change[$e]['str_date']?>
<?php echo $a_change[$e]['str_date']?>
</td>
<td>
<?=h($a_change[$e]['c_comment'])?>
<?php echo h($a_change[$e]['c_comment'])?>
</td>
<td>
<?=h($a_change[$e]['r_name'])?>
<?php echo h($a_change[$e]['r_name'])?>
</td>
<td>
<?=$a_change[$e]['tech_user']?>
<?php echo $a_change[$e]['tech_user']?>
</td>
<td>
<?=HtmlInput::button_action("Détail",sprintf("stock_inv_detail('%s','%s')",$gDossier,$a_change[$e]['c_id']));?>
<?php echo HtmlInput::button_action("Détail",sprintf("stock_inv_detail('%s','%s')",$gDossier,$a_change[$e]['c_id']));?>
</td>
</tr>
<? endfor; ?>
<?php endfor; ?>
</table>
</div>