Let a guestbook owner post in their own guestbook.

Comments

feconroses’s picture

suscribe :)

bobgeier’s picture

Agreed. The feature would be a nice option.

design.er’s picture

This (IMO important) request is about 9 months old -> any news? Would also be interesting for 6.x, of course.

Thanks a lot for your time and work. I appreciate it! :)

Anonymous’s picture

Yes, that would improve the module.

Sinan Erdem’s picture

I am also waiting for this option. It would be nice...

Cheers,

Sinan

homebrewruss’s picture

This is doable in the version of the module i'm using (6.x-1.1 ) with Drupal 6 but you need to edit the module.

I did it by editing this line.

 // Insert new message
  if (_guestbook_access('post', $uid) == 'allowed') {

change to

  // Insert new message
  if (_guestbook_access('post', $uid) == 'allowed' || 'own guestbook') {

and comment out these 3 lines:


    case 'own guestbook':
    $output .= ' ';
    break;
feconroses’s picture

I will try this and tell you if it works in my site! :)

halloffame’s picture

So did it work?

Melot’s picture

I just tried it, it works. Great! :)

sun’s picture

Version: 5.x-2.x-dev » 6.x-2.x-dev
Component: Miscellaneous » Code
sun’s picture

Status: Active » Fixed

I see no reason why this shouldn't always be allowed.

Thanks for reporting this issue! Committed a fix to HEAD (2.x).

A new development snapshot will be available within the next 12 hours. This improvement will be available in the next official release.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.