summary refs log tree commit diff stats
path: root/pages/viewPost.php
Commit message (Collapse)AuthorAgeFilesLines
* Made Four Island 2 a little more saneStarla Insigna2010-12-111-1/+1
| | | | | | | | | I spent the last few hours sanitizing the database and fixing huge bugs in the code. Among the changes made were: - "Theoretically related posts" have been removed due to the lack of FULLTEXT index support in InnoDB tables - Removed tons of stripslashes() calls that were used to remove slashes from records before I realized (while doing all of this work) that magic_quotes_gpc was on for some reason. I mean, like, come on! - Replaced all non-library uses of htmlentities() with htmlspecialchars(), which basically does the same thing except it doesn't mangle Unicode. - Completely eradicated polls. Note that this does mean that all database backups prior to December 11th 2010 are now incompatible with Four Island.
* Removed XHTMLStarla Insigna2010-01-151-0/+0
| | | | | | | XHTML was causing so many problems that it was simply unbearable. Four Island 3.0 will be sure to have no traces left of this annoyance. Also, a lot of files are showing up as being changed because this commit was on the server and I had to modifiy permissions for files (all of the files that were new since my last server commit) so I could commit.
* Fixed 2010 calendar bugStarla Insigna2010-01-011-1/+1
| | | | Because of a bug in the formula used to calculate the calendar color for each year, 2010 returned 0 instead of 4.
* Added stripslashes() to viewPostStarla Insigna2009-11-261-1/+1
|
* Rewrote Admin panelStarla Insigna2009-08-131-0/+62
The following database changes must be made: * A TEXT column called "text" must be added to the end of "polloftheweek" * The transferPollRss.php script must be run * The "pollrss" table must be dropped Closes #113