I noticed that user profiles where showing extra data that was malformed.
Traced the problem to the userreference_user hook in userreference.module.
The function is not yet complete and returns data whether there are nodes
associated to the user or not. Even if there are, it doesn't yet display them
yet, the function seems to still be a skeleton for future use.

Problem is that it makes the users profile page look a little messy, so I am submitting
this little snippet for anyone who wants to override the problem until the display
is done.

Add the line in above the switch to the function to hide it for now:

function userreference_user($op, &$edit, &$user, $category = NULL) {
    return;
  switch ($op) {

Gord Christmas

Comments

jonbob’s picture

Status: Active » Fixed

This functionality is removed for the nonce.

Anonymous’s picture

Status: Fixed » Closed (fixed)