Title: Deprecated with Php 7.2
Last modified: September 29, 2018

---

# Deprecated with Php 7.2

 *  Resolved [bdvllrd](https://wordpress.org/support/users/bdvllrd/)
 * (@bdvllrd)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/deprecated-with-php-7-2/)
 * 1/ Function create_function() is deprecated in …\wp-content\plugins\quick-event-
   manager\quick-event-manager.php on line 64
 * add_action(“widgets_init”, create_function(”, ‘return register_widget(“qem_widget”);’));
 * —— replaced by:
 * function add_qem_widget() {
    return register_widget(“qem_widget”); } add_action(“
   widgets_init”, ‘add_qem_widget’ );
 * 2/ Function create_function() is deprecated in …\wp-content\plugins\quick-event-
   manager\quick-event-manager.php on line 65
 * add_action(“widgets_init”, create_function(”, ‘return register_widget(“qem_calendar_widget”);’));
 * —— replaced by
 * function add_qem_calendar_widget() {
    return register_widget(“qem_calendar_widget”);}
   add_action(“widgets_init”, ‘add_qem_calendar_widget’ );

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Graham](https://wordpress.org/support/users/aerin/)
 * (@aerin)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/deprecated-with-php-7-2/#post-10779523)
 * Thanks for that. I’ll get the plugin updated
 *  [Graham](https://wordpress.org/support/users/aerin/)
 * (@aerin)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/deprecated-with-php-7-2/#post-10866386)
 * Updated: [https://quick-plugins.com/quick-event-manager/qem-update/](https://quick-plugins.com/quick-event-manager/qem-update/)
 * If you want to test and report back I can get the plugin ready for uploading
 *  [Graham](https://wordpress.org/support/users/aerin/)
 * (@aerin)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/deprecated-with-php-7-2/#post-10936482)
 * This fix is now part of version 8.8

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Deprecated with Php 7.2’ is closed to new replies.

 * ![](https://ps.w.org/quick-event-manager/assets/icon-256x256.png?rev=3318950)
 * [Quick Event Manager](https://wordpress.org/plugins/quick-event-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/quick-event-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/quick-event-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/quick-event-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/quick-event-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/quick-event-manager/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Graham](https://wordpress.org/support/users/aerin/)
 * Last activity: [7 years, 6 months ago](https://wordpress.org/support/topic/deprecated-with-php-7-2/#post-10936482)
 * Status: resolved