The Guestbook module has almost reached maturity!
We're pleased to announce the first 1.0 Release Candidate, which can be downloaded here:
http://dev.cmsmadesimple.org/frs/?group_id=34
In this version the module name was changed from gastbuch to Guestbook.
It also has many new features and improvements.
Please try it and let us know what you think of it!
A special note to translators: some new variables were added to the module language file and the module help and changelog got updated, so please update the module translations from the translation center.
Changes:
* Renamed module (from gastbuch) to Guestbook to represent the projects natural language
and follow CMS Made Simple module naming conventions.
* Enabled handling (deleting, activating and deactivating) of multiple guestbook entries
from the admin panel.
* There are now seperate 'Modify Guestbook Entries' and 'Modify Guestbook Template' permissions.
* A default/example stylesheet is installed (and uninstalled) with the module
* The database template can be restored to default
* Changed to tabbed navigation
* Cleanup/rewrite of the guestbook(item) database template and the variables used in it.
* Translated many variable names and code comments to english.
* Moved some admin and log messages to the language file.
* Re-formatted source code for better readability.
Guestbook 1.0 RC1 released
Re: Guestbook 1.0 RC1 released
Hi thanks for your Work!
I've now tested the new version local(On my own Computer).
If i try to add a message, it always say "Your Message was already send".
But it not add my Message and it is also not sown in the Administration Panel.
Bug?
I've now tested the new version local(On my own Computer).
If i try to add a message, it always say "Your Message was already send".
But it not add my Message and it is also not sown in the Administration Panel.
Bug?
Re: Guestbook 1.0 RC1 released
Thnx for trying the module. It seems the code that prevents the same message from being sent more than once prevents you from sending a message at all; sure looks like a bug 
What software and versions are you running (OS, PHP, mysql or other db)?
Maybe I found what causes it (this is changed in svn/the 1.0 stable version):
In the file classes/module/class.Guestbook.php starting line 355 there is these lines:
I think/hope this problem is solved if you change it to this:

What software and versions are you running (OS, PHP, mysql or other db)?
Maybe I found what causes it (this is changed in svn/the 1.0 stable version):
In the file classes/module/class.Guestbook.php starting line 355 there is these lines:
Code: Select all
$query .= " (id, idpost ) values ('', ?)";
$db->Execute($query, array($uid));
Code: Select all
$query .= " (id, idpost ) values ('', '$uid')";
$db->Execute($query);
Last edited by Anonymous on Mon May 29, 2006 12:28 pm, edited 1 time in total.