| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| | |
This is sort of cheating because I don't have SSH access to my server right now and I want to upload a file. Instead, during the time that I don't have access, I will use a remotely hosted file.
|
|/ |
|
| |
|
| |
|
|
|
|
| |
Including padding around posts on layouts 4.5 and 6.2, corner rounding on The Fourm and duplicate profile links on The Fourm on layout 6.2.
|
|
|
|
|
|
|
| |
Because Memorial Day falls on the LAST Monday of May, rather than a specific week number like the fourth week, and May can sometimes have four mondays
and sometimes have five mondays, this is quite dangerous because in 2012, May will only have four Mondays, which will render this code invalid. However,
Four Island 3.0 should hopefully be out by 2012, which will hopefully not contain this bug (a.k.a. by allowing a date to be specified as a the last day of
a month as well as during a specific week).
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| |
| | |
The RSS feed was displaying a message that doAprilFoolsDay() was not found because specialdates.php was never included. This commit can be reverted along
with the previous one when April Fools Day is done.
|
|/
|
|
|
| |
The RSS feed was displaying a message that doAprilFoolsDay() was not found because specialdates.php was never included. This commit can be reverted along
with the previous one when April Fools Day is done.
|
| |
|
| |
|
|
|
|
|
| |
In the admin panel, many (if not all) dynamic links use AJAX to POST a page. These all contained & in the URL, which didn't resolve to & as it should.
These have all been replaced.
|
|\ |
|
| |
| |
| |
| |
| | |
Because Four Island is often viewed using a subdomain or an IP address in lieu of the actual domain name, relative URLs are needed to render the page
correctly in most circumstances.
|
|/
|
|
|
| |
After a little digging, it turned out that the reason that reCAPTCHA always failed was because the reCAPTCHA server was blocked to the server. This should've
been obvious as the reCAPTCHA always worked on the development server.
|
|
|
|
| |
For the longest time, special Unicode characters have been showing up as nonsense. It turned out that my homegrown BBCode parser was at fault.
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
Because of a bug in the formula used to calculate the calendar color for each year, 2010 returned 0 instead of 4.
|
|
|
|
| |
There was previously a very annoying bug with the POTW that would randomly (but consistantly) deny people access to the POTW. It finally turned out that poll-results.php required you to be logged in to vote, which isn't what is wanted.
|
| |
|
| |
|
|
|
|
|
| |
Previously, welcome.php was always loaded if no module was specified. Because of this, the index page blog section was there, while the rest of the blog
code (plus archive code) was in blog.php. Now, the all of the blog is in blog.php and all of the archive is in archive.php.
|
|
|
|
|
| |
When Fouripedia compatibility was added, the admin panel was changed from HTML to XHTML, and so all CDATAs appeared in textboxes instead of doing their
job. They have been removed, but this is only a temporary fix as the proper solution would be to re-enable XHTML on the admin panel.
|
| |
|
| |
|
|
|
|
| |
Made many strutural changes to Four Island allowing for the reinclusion of Fouripedia.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Because XHTML was accidentally disabled in the previous changeset, a new error was found that, when in HTML mode (required for IE and layouts prior to 7),
voting did not work due to the encoded ampherstand in the query string. This is odd because what works in XHTML should also work in HTML. So, to fix this,
XHTML was re-enabled and now the ampherstand is only encoded when XHTML mode is on.
Also fixed some positioning errors with the tails of bubbles.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Also rewrote the way layouts work. Now, each layout requires a "layout.tpl" file (which contains the header and footer for the layout) and a "style.php"
file (which contains and can include other files that contain the CSS for the layout). Each layout has it's own folder in theme/layouts and you can switch
between them using a combo box in the Hatbar.
Layouts 6.2 and 4.5 have been modified to work with new Layout 7 features such as AJAX, and they should be relatively free of bugs. Layout 3 has not yet
been transferred because since it is pre-The New Four Island, it will be very difficult to do so.
This changeset requires manual external code changes:
* The line below must be added above the functions.php include in The Fourm's funnctions.php
require('/svr/www/hatkirby/fourisland/main/includes/session.php');
* The block of Four Island code in The Fourm's page_header() function should be replaced with:
global $fi_pagetitle;
$fi_pagetitle = $page_title;
ob_start();
* The block of Four Island code in The Fourm's page_footer() function should be replaced with:
global $fi_pagetitle;
$content = ob_get_contents();
ob_end_clean();
$noRightbar = 1;
$onFourm = 1;
$pageCategory = 'fourm';
if ($fi_pagetitle == 'Index page')
{
$title = 'The Fourm';
} else if (strpos($fi_pagetitle, 'View topic') !== FALSE)
{
$title = str_replace('View topic - ', 'Topic: ', $fi_pagetitle) . ' - The Fourm';
} else if (strpos($fi_pagetitle, 'View forum') !== FALSE)
{
$title = str_replace('View forum - ', 'Fourm: ', $fi_pagetitle) . ' - The Fourm';
} else if (strpos($fi_pagetitle, 'Viewing profile') !== FALSE)
{
$title = str_replace('Viewing profile - ', 'Member: ', $fi_pagetitle) . ' - The Fourm';
} else {
$title = $fi_pagetitle . ' - The Fourm';
}
if ($_GET['view'] != 'print')
{
include('/svr/www/hatkirby/fourisland/main/includes/layout.php');
} else {
echo $content;
}
Closes #117
|
| |
|
|
|
|
|
|
| |
When the poll escaping problem was fixed, a whole ton of other similar bugs were found which were also fixed here.
Fixes #115
|
| |
|
|
|
|
|
|
|
|
| |
The following database changes must be made ASAP:
* Import the links.sql script into the database
Closes #114
|
|
|
|
| |
Previously, because the "didpollalready" table that keeps count of who has already voted on this weeks poll was not being truncated when a new poll was created.
|
|
|
|
|
|
|
|
|
|
| |
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
|