nliautaud / p01contact

Create contact forms by writing simple tags. Also a plugin for GetSimple and Pico CMS.
MIT License
16 stars 15 forks source link

Warning: count(): Parameter must be an array #42

Closed beejay41 closed 5 years ago

beejay41 commented 5 years ago

The following occurs after submitting form, but doesn't prevent email being sent: Warning: count(): Parameter must be an array or an object that implements Countable in /.../plugins/p01-contact/src/P01contact_Form.php on line 215

Small typo: if (count($loads > 1) && $loads[1] - $loads[0] < $this->config('min_sec_after_load')) { ... should be (I assume): if (count($loads) > 1 && $loads[1] - $loads[0] < $this->config('min_sec_after_load')) {

nliautaud commented 5 years ago

Fixed, thanks !