[Plugin: wp mail from] Fix notice on admin
-
Hi,
Your plugin generate a notice in admin panel because you are using an old param in the add_options_page hook.
You just need to replace the 39th line :
add_options_page('mailfrom plugin', 'wp mail from', 9, __FILE__, 'site_mail_from_option_page');
By
add_options_page('mailfrom plugin', 'wp mail from', 'manage_options',
__FILE__, ‘site_mail_from_option_page’);`
- The topic ‘[Plugin: wp mail from] Fix notice on admin’ is closed to new replies.