summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2009-08-06 22:05:41 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2009-08-06 22:05:41 -0400
commit8ec607d7f5ceacb9c577af9605b0154bfc33b8e5 (patch)
tree0a0ffcf7cea3a97c67363722e105256b19a66c12
parenta12216dac37e75eee7cf4485223f5780987b364a (diff)
downloadpillowcase-8ec607d7f5ceacb9c577af9605b0154bfc33b8e5.tar.gz
pillowcase-8ec607d7f5ceacb9c577af9605b0154bfc33b8e5.tar.bz2
pillowcase-8ec607d7f5ceacb9c577af9605b0154bfc33b8e5.zip
Fixed season page bug
Previously, while each season page would start at the correct comic, it would list every single comic after it, even those in another season. This was caused by a typo. A very small typo. One letter typo. It has now been fixed.
-rwxr-xr-xpages/season.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/season.php b/pages/season.php index 5fa7cef..74568a0 100755 --- a/pages/season.php +++ b/pages/season.php
@@ -16,7 +16,7 @@ if (isset($getseason3) && ($getseason3['season_id'] == $_GET['season']))
16 <UL ID="archive"> 16 <UL ID="archive">
17<?php 17<?php
18 18
19if (!is_null($getseasons3['last_comic_id'])) 19if (!is_null($getseason3['last_comic_id']))
20{ 20{
21 $getcomics = "SELECT * FROM comics WHERE status = \"publish\" AND comic_id >= " . $getseason3['first_comic_id'] . " AND comic_id <= " . $getseason3['last_comic_id'] . " ORDER BY comic_id ASC"; 21 $getcomics = "SELECT * FROM comics WHERE status = \"publish\" AND comic_id >= " . $getseason3['first_comic_id'] . " AND comic_id <= " . $getseason3['last_comic_id'] . " ORDER BY comic_id ASC";
22} else { 22} else {