Option to allow guestbook owners to post in their own guestbook
nargonne - October 6, 2008 - 20:44
| Project: | Guestbook |
| Version: | 5.x-2.x-dev |
| Component: | Miscellaneous |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
Let a guestbook owner post in their own guestbook.

#1
suscribe :)
#2
Agreed. The feature would be a nice option.
#3
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! :)
#4
Yes, that would improve the module.
#5
I am also waiting for this option. It would be nice...
Cheers,
Sinan
#6
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 messageif (_guestbook_access('post', $uid) == 'allowed') {
change to
// Insert new messageif (_guestbook_access('post', $uid) == 'allowed' || 'own guestbook') {
and comment out these 3 lines:
case 'own guestbook':$output .= ' ';
break;
#7
I will try this and tell you if it works in my site! :)
#8
So did it work?