summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/index.php b/index.php
index bdb2754..042acdc 100644
--- a/index.php
+++ b/index.php
@@ -11,7 +11,8 @@ if ($_SESSION['accepted'] <> 1)
$Links['home'] = "Home";
$Links['leaderboard'] = "Scoreboard";
//$Links['howtoplay'] = "How to Play";
-$Links['tutorial'] = "<i>New</i> Tutorial";
+$Links['tutorial'] = "Tutorial";
+$Links['achievements'] = "<i title='new!'>Achievements</i>";
//$Links['gallery'] = "Gallery";
if ($_SESSION['isAdmin'] == true) {
$Links['admin'] = 'Admin';
@@ -25,6 +26,10 @@ switch (strtolower($_GET[page])) {
require("pages/test.php");
break;
+ case "achievements":
+ require("pages/achievements.php");
+ break;
+
case "share":
require("pages/share.php");
break;