Resolving fatal error on kbso_social_sharing_update_counts()
-
There’s a fatal error that floods the logs from a call to a function that does not exist or is not available within kebo-social/inc/classes/Kebo_Caching.php on line 89. Until a real patch/update is available, the following can be put in its place to resolve the error:
On line 89 of kebo-social/inc/classes/Kebo_Caching.php change this:
kbso_social_sharing_update_counts( self::$lock );
to this:
if ( function_exists( 'kbso_social_sharing_update_counts' ) ) kbso_social_sharing_update_counts( self::$lock );
- The topic ‘Resolving fatal error on kbso_social_sharing_update_counts()’ is closed to new replies.