summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* Added Endlenge to Website ProjectsStarla Insigna2009-05-291-0/+5
|
* Fixed poll sidebar commentsStarla Insigna2009-05-181-1/+1
|
* Added poll comments to sidebarStarla Insigna2009-05-181-1/+14
|
* Fixed RSS feedsStarla Insigna2009-05-181-4/+24
|
* Tweaked Easter holidays againStarla Insigna2009-04-041-3/+2
| | | | It turned out that there actually was a problem with the algorithm.
* Improved rendering in IEStarla Insigna2009-03-285-76/+104
| | | | | Now, Four Island doesn't look downright disgusting in IE, even though there are still a couple more problems to be fixed. Also, a small amount of CSS housekeeping was done.
* Fixed fuhsdiufgsadiufgaisfioas timeStarla Insigna2009-03-131-1/+1
|
* Merged unforgiving headsStarla Insigna2009-03-101-0/+5
|\
| * Added "Bubble Blog" to affiliates sectionStarla Insigna2009-02-281-0/+5
| |
* | Fixed IE centering bugStarla Insigna2009-03-102-2/+8
|/ | | | See http://bluerobot.com/web/css/center1.html for more details.
* Tweaked Easter holidaysStarla Insigna2009-02-251-5/+3
| | | | | | | | | | Easter holidays were coming a day late, so a day was ticked off of the Easter fourmula. It does concern me, however, that this issue wasn't discovered last year. Either there was another Easter bug last year (maybe during the time all Easter holidays were a month late?) or my fourmula's wrong. I also cleaned up some of the Special Dates code.
* Added comment editing and deletingStarla Insigna2009-02-218-22/+231
|
* Added Pillowcase link to rightbarStarla Insigna2009-02-191-0/+5
|
* Changed nighttime fontStarla Insigna2009-02-141-0/+7
|
* Created layout 6.2Starla Insigna2009-02-044-9/+22
|
* Added "Website Projects" link sectionStarla Insigna2009-01-311-257/+281
|
* Fixed FeedBurner linksStarla Insigna2009-01-291-1/+1
| | | | Because of FeedBurner's recent move to Google, the links to it had to be fixed.
* Fixed [pre] tagStarla Insigna2009-01-181-1/+1
|
* Added [quote] bbcodeStarla Insigna2009-01-081-0/+1
|
* Changed comments' user indexStarla Insigna2009-01-055-12/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the comments table referenced users by username. However, if user ever changed their username, everything would become messed up. To fix this, the index has been changed to the user ID. This change obviously requires maintenance: This SQL must be run: "ALTER TABLE `comments` ADD `user_id` INT( 11 ) NOT NULL AFTER `page_id`;" This PHP will generate some SQL that must be run: <?php $getusers = "SELECT DISTINCT username FROM comments WHERE is_anon = 0"; $getusers2 = mysql_query($getusers); while ($getusers3 = mysql_fetch_array($getusers2)) { $getuser = "SELECT * FROM phpbb_users WHERE username = \"" . $getusers3['username'] . "\""; $getuser2 = mysql_query($getuser); $getuser3 = mysql_fetch_array($getuser2); echo("UPDATE comments SET user_id = " . $getuser3['user_id'] . " WHERE username = \"" . $getuser3['username'] . "\" AND is_anon = 0;<BR>"); } $getusers = "SELECT * FROM anon_commenters"; $getusers2 = mysql_query($getusers); while ($getusers3 = mysql_fetch_array($getusers2)) { echo("UPDATE comments SET user_id = " . $getusers3['id'] . " WHERE username = \"" . $getusers3['username'] . "\" AND is_anon = 1;<BR>"); } ?> This SQL must be run: "ALTER TABLE `comments` DROP `username`;"
* Improved anonymous commentingStarla Insigna2009-01-054-53/+37
| | | | | There was a bug where, if an anonymous commenter used a username that was being used by an actual member, Four Island would think the anonymous commentor was actually the member.
* Restricted Admin panel to AdminsStarla Insigna2009-01-051-1/+1
| | | | | Previously, when phpBB3 was integrated, the user group 2 was mistaken as the Admin group when it was actually the Registered group, thus allowing anyone who could log in to access the admin panel.
* Added Admin link to navbarStarla Insigna2009-01-052-0/+12
|
* Integreated Fourm usersStarla Insigna2009-01-0510-149/+104
|
* Fixed POTW form linebreak errorStarla Insigna2009-01-041-0/+2
|
* Merged unforgiving headsStarla Insigna2009-01-042-0/+31
|\
| * Added fuhsdiufgsadiufgaisfioasStarla Insigna2009-01-042-0/+31
| |
* | Modified some image ALTsStarla Insigna2009-01-032-4/+4
| |
* | Added :D smileyStarla Insigna2009-01-032-0/+1
| |
* | Removed some unnecessary theme imagesStarla Insigna2009-01-028-0/+0
| |
* | Fixed some night bugs in Layout 6.1Starla Insigna2009-01-023-18/+0
| |
* | Created layout 6.1Starla Insigna2009-01-014-64/+47
| |
* | Added revision stampingStarla Insigna2008-12-302-1/+4
|/
* Fixed some more HTML validation errorsStarla Insigna2008-12-262-5/+5
|
* Modfied Quotes module's night visionStarla Insigna2008-12-246-9/+18
|
* Fixed many HTML validation errorsStarla Insigna2008-12-2114-141/+127
|
* Removed jQuery libraryStarla Insigna2008-12-212-66/+0
| | | | | Because Four Island is now usable in IE, there is no reason to turn back IE 6 users. Thusly, the jQuery library has been deleted, which also saves bandwidth, as the file was 60K.
* Eased usability in IEStarla Insigna2008-12-212-2/+12
| | | | | | Previously, IE had a problem with IE 6 that made it impossible to use Four Island. The rightbar was cleared to the bottom, the posts' text were invisible, the top-fade obscured text and The Fourm was illegiable. This has (mostly) been fixed with a conditional stylesheet. Four Island doesn't look perfect in IE yet (and probably never will) but at least now it's usable.
* Re-did 404 pageStarla Insigna2008-12-213-69/+109
| | | | | | For some reason, the 404 page was previously filled with terrible semantics, IE classes and it didn't look great. Now, the HTML has been improved. The Search clause has been fixed, there was a bug with displaying the search terms. Also, the error document has been set to the 404 page so the 404 page is actually shown when a page cannot be found.
* Rearranged .htaccess fileStarla Insigna2008-12-211-3/+3
| | | | | | | The whole pingback RSS error was, at the core, the fault of bad redirection. The problem was that the redirection from the "www" subdomain was the last priority in the file, while it should have been the first.
* Relocated includes/functions_quotes.phpStarla Insigna2008-12-212-197/+170
| | | | | | As the functions defined in functions_quotes.php are only used in the quotes.php module, there is no reason to have them located in a seperate include file.
* Removed splash screenStarla Insigna2008-12-216-540/+0
|
* Removed legacy pages/fourm.phpStarla Insigna2008-12-211-31/+0
| | | | | Ages ago, Four Island used mod_rewrite and a module called fourm.php to integrate The Fourm into the main site. However, now that task is accomplished by The Fourm itself by including the Four Island header.php and footer.php
* Fixed gender pronounsStarla Insigna2008-12-201-21/+21
|
* Added Maintenance switcher to AdminStarla Insigna2008-12-206-5/+59
| | | | | | Also fixed spelling of maintenance in places where it was incorrectly spelled. Maintenance Required: Rename "mantainenceMode" config to "maintenanceMode"
* Added HG Update to AdminStarla Insigna2008-12-203-0/+16
| | | | Now, changes can be remotely pushed to the central repository and updated using the Admin panel.
* Included parsers.php into RSS feedStarla Insigna2008-12-2013-1/+1
| | | | | Previously, the RSS feed wouldn't display because it attempted to display parsed blog posts, but the parseText() function was not defined as parsers.php was not included.
* Replaced addslashes()Starla Insigna2008-12-193-13/+13
| | | | | Many SQL queries were using the function addslashes() to escape their content. They have been replaced with the more secure mysql_real_escape_string() function.
* Fixed Draft->Pending deletion bugStarla Insigna2008-12-191-1/+1
| | | | | | Previously, if a draft was being moved into the pending queue, it would be deleted instead. The problem turned out to be the fact that when the tag system was changed (409d99f03471), the single instance in the admin panel of a draft being changed into a pending post was not fixed as the rest were. The extra column in the "INSERT" query annoyed MySQL as that column no longer exists.
* Added [thumb] BBCodeStarla Insigna2008-12-193-1/+3
| | | | | The [thumb] bbcode takes the content and creates a thumbnail of it. The thumbnail fits perfectly inside the post bubble and is wrapped with a link to the original image.