From: Ciro Scognamiglio Date: Fri, 19 May 2017 11:04:51 +0000 (+0200) Subject: fixed: php warnings X-Git-Tag: plewww-5.2-8~2 X-Git-Url: http://git.onelab.eu/?p=plewww.git;a=commitdiff_plain;h=6a3ae6aeff154df1d916f78e966536959314fd8e fixed: php warnings --- diff --git a/plekit/php/form.php b/plekit/php/form.php index f12d53e..f56f02a 100644 --- a/plekit/php/form.php +++ b/plekit/php/form.php @@ -31,9 +31,9 @@ class PlekitForm { $this->values=$values; // make strict xhtml happy - $this->method="post"; if ($options['method']) $this->method=strtolower($options['method']); - $this->onSubmit=NULL; if ($options['onSubmit']) $this->onSubmit=$options['onSubmit']; - $this->onReset=NULL; if ($options['onReset']) $this->onReset=$options['onReset']; + $this->method="post"; if (isset($options['method']) && (!empty($options['method']))) $this->method=strtolower($options['method']); + $this->onSubmit=NULL; if (isset($options['onSubmit']) && (!empty($options['onSubmit']))) $this->onSubmit=$options['onSubmit']; + $this->onReset=NULL; if (isset($options['onReset']) && (!empty($options['onReset']))) $this->onReset=$options['onReset']; } function start () { print $this->start_html(); }