diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-04-01 15:14:27 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-04-01 15:14:27 -0700 |
commit | b0c32c4d42566e01645f2803b76eb2299b17de55 (patch) | |
tree | 3557a3adb35033f3d55feec8cafe1ffb8f0b0d56 | |
parent | 588ae3258c6690e61e1b23cb931fba98dee46a08 (diff) | |
download | pathery-b0c32c4d42566e01645f2803b76eb2299b17de55.tar.xz |
Tutorial link changes
-rw-r--r-- | index.php | 4 | ||||
-rw-r--r-- | pages/home.php | 12 |
2 files changed, 7 insertions, 9 deletions
@@ -74,13 +74,15 @@ $footerLinks['#top'] = "Back to Top"; $Links['home'] = "Home";
//TODO: Delete
//$Links['oldleaderboard'] = "Old ScorePage...";
-$Links['scores'] = "Scores <i>New!</i>";
+$Links['scores'] = "Scores";
//$Links['challengelist'] = "Challenges <i>BETA!</i>";
//$Links['tutorial'] = "Tutorial";
if ($accepted) {
$linkname = 'achievements?id='.$_SESSION['userID'];
$Links[$linkname] = "Achievements";
+} else {
+ $Links['tutorial'] = "Tutorial";
}
// $Links['members'] = "Member List";
diff --git a/pages/home.php b/pages/home.php index 4a3c8a6..696c0cc 100644 --- a/pages/home.php +++ b/pages/home.php @@ -116,22 +116,18 @@ $adContent = " <div class="wrapper">
-
-<center>
-Tutorial, FAQ, and Challenge maps are broken. ^_^.
-<br />Still working on <a href='scores'>The Scores Page</a>.
-<br />Leave feedback in <a href='chat'>The Chat</a> as per usual.
-</center>
-
<br />
<?
if ($accepted) {
if (!hasCompletedTutorial($userID)) {
- echo "<center><a href='tutorial'>Complete the tutorial</a> to unlock a blue wall color:";
+ echo "<center><a href='tutorial'>Complete the tutorial</a> to unlock this blue wall color!";
echo "<table><tr><td style='background-color:#4444ff;' class='grid_td_rocks'></td></tr></table></center><br />";
}
+} else {
+ echo "<center>New to Pathery? <a href='tutorial'>Start Here!</a></center>
+ <br />";
}
// 3 Main maps
|