create_function() is deprecated in PHP 7.2
-
PHP 7.2 has marked
create_function()
as deprecated, so this plugin will start throwing a warning if you update your PHP version. It’ll look something like this:Deprecated: Function create_function() is deprecated in [path to your wp-content directory]/plugins/gravity-forms-wcag-20-form-fields/gravity_forms_wcag20_form_fields_plugin.php on line 61
Until the plugin is updated, change line 61 to:
add_filter( 'gform_tabindex', '__return_false' ); //disable tab-index
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘create_function() is deprecated in PHP 7.2’ is closed to new replies.