• Resolved Jon T?ng

    (@jontng)


    Deprecated: gmmktime(): You should be using the time() function instead in /…/plugins/wp-paint/wp-paint.php on line 164

    Change this:
    `if(!$wp_paint_review_done && gmmktime() > $wp_paint_review_later_time && $wp_paint_edits >= 10) {
    add_action(‘admin_notices’, ‘wp_paint_review_request_notice’);
    }`
    to:
    `if(!$wp_paint_review_done && time() > $wp_paint_review_later_time && $wp_paint_edits >= 10) {
    add_action(‘admin_notices’, ‘wp_paint_review_request_notice’);
    }`

Viewing 1 replies (of 1 total)
  • Plugin Author Dev

    (@devadattas)

    @jontng This issue has been resolved in the latest version 0.3.8. Requesting you to please test and confirm.

Viewing 1 replies (of 1 total)
  • The topic ‘Deprecated code’ is closed to new replies.