[Plugin: Facebook Likes You!] fix for lines, 138, 512
-
here are fixes for this plugin.
errors are shown when the WP_DEBUG is on.on line 138:
from
$locale = defined(WPLANG) ? WPLANG : 'en_US';
to
$locale = defined('WPLANG') ? WPLANG : 'en_US';
on line 512:
from
add_options_page('Facebook Likes You! Options', 'Facebook Likes You!', 8, __FILE__, 'fb_plugin_options');
to
add_options_page('Facebook Likes You! Options', 'Facebook Likes You!', 'manage_options', __FILE__, 'fb_plugin_options');
https://www.ads-software.com/extend/plugins/facebook-likes-you/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Facebook Likes You!] fix for lines, 138, 512’ is closed to new replies.