Changelog for the flatPHPbook script by Thomas Hettenhausen
http://flatphpbook.sourceforge.net



Changes in 0.9.2 
----------------
- Fixed several "undefined varibale" or "no such offset" errors that appeared when deleting posts.
  That did not happen on my main development machine, so I did not notice until I moved to another machine.
  Obviously some versions of PHP for Win32 are more forgiving...
- Fixed a bug where the extra-super-duper-new security check introduced in 0.9.1 (which would not delete
  a post if the numbers got mixed up) did nothing, because I both had a typo in the hidden form field and
  did not initialize the important variables correctly, so NULL was compared to NULL (always true). I never saw that, but
  it is kinda hard to test a feature like that if I do not have a heavy-load-guestbook to test with...
- Fixed the bug with the homepage associated with a post. If the poster did not add "http://" to the beginning
  of the URL (e.g. "www.domain.com" instead of "http://www.domain.com"), the resulting HTML code was
  <a href="www.domain.com">..., which created a hyperlink to
  http://guestbookserver/guestbookdirectory/www.domain.com - which just did not work.
- Added the possibility to have "Sign this guestbook" and "View this guestbook" on different pages (by request
  from a friend). If $separateViewFromSign is set to 1, the script defaults to viewing the guestbook and displays a link to sign
  the guestbook instead of the input fields. On the page with the fields, a link "to view" is displayed instead of
  the list of the previous posts.
- Corrected and reformatted the Readme file and added several new parts to it (e.g. the whole Requirements section).

  


Changes in 0.9.1
----------------
- Fixed installation bug where file system permissions would prevent creation of 'guestbook.db' by adding
  an empty file of this name to the archive.
- If the admin deleted a post while someone else submitted a post, the numbering schemes got mixed up.
  This resulted in the wrong post being deleted. Now no post is deleted for safety reasons.
- Added a "color" section to the color selector, because the topmost color did not trigger the script.
- Special characters such as quotes no longer are preceded by a backslash.