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 14:48:04 +00:00
parent 5a982fb2ad
commit bc4e5cfcba
6 changed files with 6 additions and 6 deletions

View file

@ -650,7 +650,7 @@ class widget {
return '<INPUT TYPE="SUBMIT" NAME="'.$p_name.'" VALUE="'.$p_value.'" '.$p_javascript.'>';
}
function Reset ($p_value) {
static function reset ($p_value) {
return '<INPUT TYPE="SUBMIT" VALUE="'.$p_value.'">';
}
static function hidden($p_name,$p_value) {