Socialize warnings in WordPress 3.6.1
-
After upgrading to WordPress 3.6.1 the plugin still appears to work correctly, but I am getting a number of warnings like…
Strict standards: Non-static method socializeWP::get_options() should not be called statically, assuming $this from incompatible context in wp-content/plugins/socialize/frontend/socialize-services.php on line 24
It looks like these functions are only ever called statically, so adding the
static
keyword to the function definitions appears to solve this for me.static function get_options() {
- The topic ‘Socialize warnings in WordPress 3.6.1’ is closed to new replies.