• Hello,

    I get he followin error:
    [12-Feb-2016 14:30:28 UTC] PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; FeedBurnerFormWidget has a deprecated constructor in /public_html/wp-content/plugins/feedburner-form/control/widgets.php on line 3

    This
    /** constructor */

    function FeedBurnerFormWidget() {
            parent::__construct(false, $name = 'FeedBurnerFormWidget', $widget_options = array('name' => _x('Feedburner Form','plugin name','fbf'),'description' => __('Add a Feedburner Form','fbf')));;
        }

    Should be

    /** constructor */
        function __construct() {
            parent::__construct(false, $name = 'FeedBurnerFormWidget', $widget_options = array('name' => _x('Feedburner Form','plugin name','fbf'),'description' => __('Add a Feedburner Form','fbf')));;
        }

    https://ww.wp.xz.cn/plugins/feedburner-form/

The topic ‘PHP7 issues’ is closed to new replies.