Support » Plugin: Regenerate Thumbnails Reminder » Easily removable warnings

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter htrex

    (@htrex)

    Please also change the latest line from:

    add_action( ‘init’, array( ‘RegenerateThumbnailsReminder’, ‘init’ ) );

    to

    $RTR = new RegenerateThumbnailsReminder();
    add_action( ‘init’, array( $RTR, ‘init’ ) );

    to get rid of Strict warnings.

    Works perfectly with WP 3.8, please update it.

    Plugin Author Nico

    (@nico23)

    Thanks, I updated and made a “real” class instead of singleton and improved when its loaded in 1.3.

    This should get rid of warnings.

    Thread Starter htrex

    (@htrex)

    Works perfectly, thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Easily removable warnings’ is closed to new replies.