summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorPatrick Davison <snapwilliam@gmail.com>2013-02-09 14:25:06 -0800
committerPatrick Davison <snapwilliam@gmail.com>2013-02-09 14:25:06 -0800
commite3b999dc0520df1cc7ed0a4f92080368e9728cb9 (patch)
treeeba7cffe6db0e9e1c730115e580f24cbd13c7664 /index.php
parente147e44088e8bc76fac2a3b92b32b76f9867280d (diff)
downloadpathery-e3b999dc0520df1cc7ed0a4f92080368e9728cb9.tar.xz
Map URL rewrite .com/map/ID - Note this has domain name in it...
Diffstat (limited to 'index.php')
-rw-r--r--index.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/index.php b/index.php
index 4eff377..a84fb19 100644
--- a/index.php
+++ b/index.php
@@ -71,7 +71,9 @@ $footerLinks['#top'] = "Back to Top";
//Links appear in order.
$Links['home'] = "Home";
-$Links['scores'] = "Scores";
+//TODO: Delete
+ $Links['oldleaderboard'] = "Old ScorePage...";
+$Links['scores'] = "Scores <i>BETA!</i>";
$Links['challengelist'] = "Challenges <i>BETA!</i>";
//$Links['howtoplay'] = "How to Play";
//$Links['tutorial'] = "Tutorial";
@@ -149,6 +151,11 @@ switch ($request) {
require("pages/howtoplay.php");
break;
+ //TODO: DELETE:
+ case "oldleaderboard":
+ require("pages/oldleaderboard.php");
+ break;
+
//Support older links.
case "leaderboard":
header("Location: $mydomain"."scores?date=".$_GET['date']);