relu / contact-form-7-datepicker

Datepicker for Contact Form 7 Wordpress Plugin based on JQueryUI's datepicker (NO LONGER MAINTAINED)
http://wordpress.org/plugins/contact-form-7-datepicker/
29 stars 34 forks source link

create_function deprecated #223

Open bkjproductions opened 5 years ago

bkjproductions commented 5 years ago

If you're using PHP7.x you may get an error of create_function deprecated

Somewhere around line 196 of datetimepicker.php

create_function('$var', 'return ! empty($var);') is the problem. Change that line to function($var) {return ! empty($var);}

So that section around line 194 reads:

private function options_encode() { $options = json_encode(array_filter( $this->options, function($var) {return ! empty($var);} )); return stripslashes($options); }