• Resolved rweil55

    (@rweil55)


    ez sql version 4.17.42 causes notice “Deprecated: Function create_function() is deprecated in /elisqlreports/index.php on line 881″

    Please change code from:
    add_action(‘widgets_init’, create_function(”, ‘return
    register_widget(“ELISQLREPORTS_Widget_Class”);’));
    to:

    add_action(‘widgets_init’, function() {
    return register_widget(“ELISQLREPORTS_Widget_Class”);} ) ;

    Thanks in advance for your time.
    Roy

  • The topic ‘“create_function() is deprecated in /elisqlreports/index.php on line 881”’ is closed to new replies.