2003-01-02 """""""""" * Fixed online list looking ugly when there are many users online. 2003-01-01 """""""""" * Moved version number from config.php into the database. * Finished the new search code. Pun no longer relies on fulltext indexing support in the database. The search code is heavily inspired by the search code in phpBB2 (http://www.phpbb.com/). 2002-12-29 """""""""" * Finished update script from Beta 2 to Beta 3. * Fixed tabbing order in post.php. 2002-12-28 """""""""" * Changed the plaintext box for "SMTP password" to a password text box (thanks grunkan!). 2002-12-20 """""""""" * Fixed admin/mod-only forums being visible for regular users. * Added some nice defines to a few of the include files. These defines are used in some parts of the code to check whether the file has been included or not. 2002-12-15 """""""""" * Improved PunTags parsing code. If the quote depth level is too high in a message, Pun will automatically strip out the inner most quote(s). * Moved code for determining user title into a function (common.php). Not validated users are now displayed as regular users since this seems to be common practice in other forums. 2002-12-14 """""""""" * Fixed username not being updated in posts, topics and forums if an admin changed the username and only changed the capitalization. 2002-12-13 """""""""" * Improved PunTags parser a bit. There should be a small speed improvement. * Long URL's are now truncated to avoid messing up page layout. 2002-12-12 """""""""" * Improved layout and performance of parser.php a bit. * Fixed page title when viewing profile. * Added user group to search parameters in Admin/Users. * Added expire date to bans. If set, a ban will automatically expire at the specified date. 2002-12-09 """""""""" * Database size in Admin/Index is now displayed in megabytes if size is one megabyte or more. 2002-12-06 """""""""" * Fixed quote link being visible for guests in closed forums (thanks louie!). 2002-12-04 """""""""" * Fixed new message indicators appearing as broken images when the current users style has been deleted (thanks doffen!). 2002-11-25 """""""""" * Fixed Mozilla nowrap "issue" in viewtopic.php (thanks KD!). 2002-11-18 """""""""" * Added a check in install.php to see if the default avatar directory is writable by PHP. If not, a warning message is displayed. * Finished a rewrite of much of the HTML generated by Pun. CSS is used more extensively and therefore the style format has changed a bit. * Increased the size of the title and description fields. It is now possible to use HTML to display an image instead of the title or description text. 2002-11-08 """""""""" * The table "online" is now a HEAP-table (only in MySQL). This should improve the performance of the online list a little. * Added word 'Never' to language files (thanks tuna!). 2002-11-06 """""""""" * Fixed register.php not working when magic_quotes_gpc was turned off in php.ini (thanks Virrdo!). 2002-11-05 """""""""" * Added censoring to signature preview in profile.php. * Fixed moderators not being able to post, edit or delete posts in admin/moderator only forums (thanks Cod!). If you want a moderator to be allowed to edit and delete other peoples posts in admin/mod only forums you still have to add them to the moderators column in admin/forums. I kept it this way because sometimes you may not want moderators editing and deleting each others posts in a admin/mod only forum. 2002-11-04 """""""""" * Fixed avatar size setting having no effect when uploading. * Moved calls to mail() and smtpMail() to a generic method punMail(). * Added help.php (and appropriate links to it from other scripts) which contains information about PunTags and smilies (thanks Denniz PoP for help with some writing!). 2002-11-02 """""""""" * Added a rolleyes smiley. The text representation is :roll: * Cleaned up the smilies code a bit. Adding new smilies is now much easier for someone not familiar with regular expressions. 2002-10-30 """""""""" * Added option to show/hide post counts from regular users. * Fixed SQL error in userlist.php when using PostgreSQL. * Changed POST validation and database insertion code in admin_options.php and admin_permissions.php. It's much prettier now. * Added a PHP version check to install.php (4.1.0+ required). * Added a PHP replacement for array_chunk() that first appeared in PHP 4.2.0. * Fixed users not being validated directly after being logged in automatically (only when validate registrations is off). This caused some odd side-effects like the newly registered user appering as an administrator in viewtopic.php even though he/she didn't have admin access. 2002-10-28 """""""""" * Fixed delete.php not deleting all posts in a topic when the topic itself is deleted. 2002-10-27 """""""""" * Tuned PostgreSQL support a bit by disabling autocommit. Pun now executes BEGIN/COMMIT/ROLLBACK manually for some operations (i.e. posting, deleting, pruning etc). 2002-10-26 """""""""" * Optimized viewforum.php. The number of queries when "userhaspostedearlier" is enabled is now around 10 instead of 9+topic count. The script should be much faster (especially on servers with high database connection overhead). 2002-10-24 """""""""" * Added initial PostgreSQL support. 2002-10-22 """""""""" * Fixed swedish spelling of User list. 2002-10-20 """""""""" * Fixed page titles in admin (thanks Denniz PoP). 2002-10-18 """""""""" * Made some minor adjustments to the database structure (mostly changed the size of some integers). * Replaced all enum('yes','no') with tinyint in preparation for PostgreSQL. * Created an update script for updating from beta 1a to beta 2. 2002-10-14 """""""""" * Fixed smilies in signatures appearing as disabled regardless of the actual setting (thanks Denniz PoP). * Fixed user post count resetting when a moderator updates a profile (thanks Denniz PoP and other users reporting this). 2002-10-13 """""""""" * Fixed guests post not being visible. * Fixed guests not being able to post.