The "view recent guestbook entries" (guestbook module) has dissapeared from the users' acount pages after installing the quotes module. Instead in the same position, now we have

Quotes
View recent quotes

Comments

ekrispin’s picture

I found a solution:

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

From:

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

To:

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

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

---

Erez Krispin

hba’s picture

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

nancydru’s picture

If/when I get commit access, this will be fixed.

nancydru’s picture

Assigned: Unassigned » nancydru
Status: Active » Fixed

Fix committed.

nancydru’s picture

Status: Fixed » Closed (fixed)