Notice when WP_DEBUG=true
-
Hello team,
I got notice like below when I set WP_DEBUG true and saw blog post.
Notice: Undefined variable: liked_count in
/Users/matsumurashigeaki/work/hires4everyone.com/wordpress/wp-content/plugins/buddypress-like/includes/blogpost.php on line 25It should be changed as follows
buddypress-like/includes/blogpost.php
– if ( !$id && is_single() ) {
+ if ( !isset($id) && is_single() ) {By the way, why don’t you move from svn to Github?
- The topic ‘Notice when WP_DEBUG=true’ is closed to new replies.