replace function widget::Submit and static widget::submit_button by static widget::submit (same for Reset)

This commit is contained in:
sparkyx 2008-01-17 13:34:01 +00:00
parent c35014d58e
commit 5a982fb2ad
55 changed files with 140 additions and 143 deletions

View file

@ -47,7 +47,7 @@ for ($i=0;$i<sizeof($all);$i++) {
$w->name='id';
$w->value=$i;
echo $w->IOValue();
echo $w->Submit('mod','modifie');
echo widget::submit('mod','modifie');
echo '</FORM>';
echo '</TD>';
echo "</TR>";
@ -70,8 +70,8 @@ if ( isset ($_POST['mod'] ))
$h->name='p_action';
$h->value='poste';
echo $h->IOValue();
echo $w->Submit('confirm_mod','Confirme');
echo $w->Submit('no','Cancel');
echo widget::submit('confirm_mod','Confirme');
echo widget::submit('no','Cancel');
echo "</FORM>";
echo "</div>";