Title: PHP7 compatibility?
Last modified: August 24, 2016

---

# PHP7 compatibility?

 *  Resolved [greeenkaos](https://wordpress.org/support/users/greeenkaos/)
 * (@greeenkaos)
 * [11 years ago](https://wordpress.org/support/topic/php7-compatibility/)
 * Hi, really enjoying your plugin! I’m wondering if you have plans to make it compatible
   with PHP7? In a test setup with PHP7 I see this error:
 * `Fatal error: 'break' not in the 'loop' or 'switch' context in /www/sitename/
   wp-content/plugins/email-manager/classes/wpem-template-class.php on line 293`
 * Thanks!
 * [https://wordpress.org/plugins/email-manager/](https://wordpress.org/plugins/email-manager/)

Viewing 1 replies (of 1 total)

 *  Thread Starter [greeenkaos](https://wordpress.org/support/users/greeenkaos/)
 * (@greeenkaos)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/php7-compatibility/#post-6173960)
 * Resolved. Simply removing line 293 with ‘break;’ resolves the error.
 *     ```
       } elseif (isset($attributes[__('archive', 'wpem')]) && intval($attributes[__('archive', 'wpem')])) {
                       $settings = WPEM()->modules['settings']->settings['mail'];
                       return '<a href="' . site_url('/?' . __('wpem_browser_mail', 'wpem') . '=' . $attributes[__('archive', 'wpem')]) . '">' . $settings['show_in_browser_text'] . '</a>';
                       break;
                   }
       ```
   
 * becomes
 *     ```
       } elseif (isset($attributes[__('archive', 'wpem')]) && intval($attributes[__('archive', 'wpem')])) {
                       $settings = WPEM()->modules['settings']->settings['mail'];
                       return '<a href="' . site_url('/?' . __('wpem_browser_mail', 'wpem') . '=' . $attributes[__('archive', 'wpem')]) . '">' . $settings['show_in_browser_text'] . '</a>';
                   }
       ```
   
 * Since editing I sent an email using a custom template… all seems to work as before.

Viewing 1 replies (of 1 total)

The topic ‘PHP7 compatibility?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/email-manager.svg)
 * [Email Manager](https://wordpress.org/plugins/email-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/email-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/email-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/email-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/email-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/email-manager/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [greeenkaos](https://wordpress.org/support/users/greeenkaos/)
 * Last activity: [10 years, 12 months ago](https://wordpress.org/support/topic/php7-compatibility/#post-6173960)
 * Status: resolved