Title: PHP7 issues
Last modified: August 31, 2016

---

# PHP7 issues

 *  [alordiel](https://wordpress.org/support/users/alordiel/)
 * (@alordiel)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/php7-issues-1/)
 * 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://wordpress.org/plugins/feedburner-form/](https://wordpress.org/plugins/feedburner-form/)

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

 * ![](https://s.w.org/plugins/geopattern-icon/feedburner-form_fafafa.svg)
 * [Feedburner Form](https://wordpress.org/plugins/feedburner-form/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/feedburner-form/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/feedburner-form/)
 * [Active Topics](https://wordpress.org/support/plugin/feedburner-form/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/feedburner-form/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/feedburner-form/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [alordiel](https://wordpress.org/support/users/alordiel/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/php7-issues-1/)
 * Status: not resolved