• Please update the add_options_page() function in this plugin, as it currently uses user levels instead of roles and capabilities when registering the admin page on line 226 of flickrrss.php. Your plugin is generating a deprecated function error. (not a big deal for most)

    Currently:
    add_options_page('flickrRSS Settings', 'flickrRSS', 8, basename(__FILE__), array(&$this, 'printSettingsPage'));

    Should be:
    add_options_page('flickrRSS Settings', 'flickrRSS', 'manage_options', basename(__FILE__), array(&$this, 'printSettingsPage'));

    http://wordpress.org/extend/plugins/flickr-rss/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Dave Kellam

    (@eightface)

    Sorry about that, it had been years since the last update and I guess my sandbox install didn’t have the debug flag on. I’ll try to get that fixed up in the near future.

    Thread Starter Donald Gilbert

    (@dilbert4life)

    Not a problem – thanks for a great plugin!

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

The topic ‘[Plugin: flickrRSS] Deprecated Argument’ is closed to new replies.