summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
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']);