From 6a3ae6aeff154df1d916f78e966536959314fd8e Mon Sep 17 00:00:00 2001 From: Ciro Scognamiglio Date: Fri, 19 May 2017 13:04:51 +0200 Subject: [PATCH] fixed: php warnings --- plekit/php/form.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); } -- 2.43.0