WP_User->id deprecated
-
On wordpress admin discussions settings page there are multiple notices (debug is on) about deperecated use of WP_User->id. It simply needs to be in uppercase.
Notice: WP_User->id was called with an argument that is deprecated since version 2.1.0! Use
WP_User->IDinstead.Fix is very simple. In nextend-facebook-connect.php 433th row you need to change
$id = $u->id;to$id = $u->ID;
The topic ‘WP_User->id deprecated’ is closed to new replies.