diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-01-08 01:53:05 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-01-08 01:53:05 -0800 |
commit | 6b8c58ac2d4de502421acef48f4434bee605633f (patch) | |
tree | b6ed4553388d0058952a987734a317ecfaea13f9 /pages/challengelist.php | |
parent | a431308aa3c6c698d23b45bf5e1f905123e0cba5 (diff) | |
download | pathery-6b8c58ac2d4de502421acef48f4434bee605633f.tar.xz |
Challenges Implementation. LOTS of stuff
Fixed an issue with loading best solution from logged out to logged in state.
Commented out a lot of firephp stuff; feel free to uncomment.
Diffstat (limited to 'pages/challengelist.php')
-rw-r--r-- | pages/challengelist.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/pages/challengelist.php b/pages/challengelist.php index e3f057a..03dfdb3 100644 --- a/pages/challengelist.php +++ b/pages/challengelist.php @@ -1,5 +1,4 @@ <?php -ob_start("ob_gzhandler"); htmlHeader( array('tutorial', 'challenge'), 'Pathery Challenges', 'Challenges', array('scores', 'dateformat') @@ -45,10 +44,6 @@ displayChallengeList($challengeListResultset); ?> </div> -<div id="copy" style='width:100%;clear: both'> - Copyright © 2011-2012 pathery.com -</div> - <?php htmlFooter(); ?> @@ -84,7 +79,7 @@ function displayChallengeList($challengeListResultset) echo '</td></tr>'; } $currentMap = $challenge["mapID"]; - $mapName = $challenge["challengeName"]; + $mapName = $challenge["name"]; if($mapName == NULL || $mapName == "") $mapName = "(unknown)"; echo "<tr><td class='challengelist_link'><a href='challenge?mapID=$currentMap'>$mapName</a></td>"; |