• Michael Ritsch

    (@michaelritsch)


    Hi, the plugin crashes with php in version 7.2.19 because “create_function()” is deprecated. I replaced following lines of code to solve the problem:

    soundcloud-is-gold/soundcloud-is-gold-widget.php

    replace this:

    add_action( 'widgets_init', create_function( '', 'register_widget( "soundcloud_is_gold_widget" );' ) );

    with this:

    add_action ( 'widgets_init', 'register_soundcloud_is_gold_widget' );
    
    function register_soundcloud_is_gold_widget() {
    	return register_widget('soundcloud_is_gold_widget');
    }

    Can you please make an official update for that? Is there offizial github?

  • The topic ‘Bugfix for php 7.2’ is closed to new replies.