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

@ -31,18 +31,18 @@
<table>
<tr>
<td>Nom</td>
<td><?=$name->input();?></td>
<td><?php echo $name->input();?></td>
</tr>
<tr>
<td>Description</td>
<td><?=$desc->input()?></td>
<td><?php echo $desc->input()?></td>
</tr>
<tr>
<td>Avec Calculatrice</td>
<td><?=$with_calc->input()?></td>
<td><?php echo $with_calc->input()?></td>
</tr>
<tr>
<td>Avec Direct Form</td>
<td><?=$with_direct_form->input()?></td>
<td><?php echo $with_direct_form->input()?></td>
</tr>
</table>