The problem:

The "view recent guestbook entries" (guestbook module) has dissapeared from the users' acount pages after installing the quotes module (and vice versa, depending on the order of installing the two modules). Instead in the same position in the History category, now we have:

Quotes
View recent quotes

The Solution:

In the implementation of the hook_user(), when $type=='view', when changing in line 104 the category (the key of the outer associative array) from 'History' to 'Guestbook', the problem is solved.

From:

return array(t('History') => $items);

To:

return array(t('Guestbook') => $items);

And it also puts it in a separate Guestbook category in the User Account view which makes more sense than in History

---

Erez Krispin

Comments

hba’s picture

"History" is used because it's done that way with blogs. Could you check if the "Blog » View recent blog entries" also disappear when enabling quotes?

hba’s picture

(This issue is also in the Quotes issue tracker: http://drupal.org/node/125389)

sun’s picture

Component: User interface » Code
sun’s picture

Status: Active » Closed (duplicate)