I tested the Guestbook module and as far as I can say the user-settings for the personal guestbook (enable/disable and intro-text) are not working.

Is this feature not fully ported yet - or am I just missing something?

Thanks,
walter

CommentFileSizeAuthor
#2 user_settings-6809294-3.patch1.51 KBvalderama
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

valderama’s picture

Title: User settings not working? » User settings partly not working
Category: support » bug

After diggin into the code I found the (small) bug - in _guestbook_info the code is missing the data array; it tries to access a property which is not existing.

Currently:

$guestbook_user->guestbook_status

Correct:

$guestbook_user->data['guestbook_status']

It make a quick patch, and hope someone will take a look at it :)

valderama’s picture

Status: Active » Needs review
FileSize
1.51 KB

Here is the patch..