diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2012-08-18 00:24:27 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2012-08-18 00:24:27 -0700 |
commit | 748a984d7e914d2211175d95e564c6f56e566f6e (patch) | |
tree | 7492677d3563b2b62bc585ea0cbfab016e61ed09 /pages/home.php | |
parent | a160d8b5a9b4c82bf886275ac0e751fa66815db0 (diff) | |
download | pathery-748a984d7e914d2211175d95e564c6f56e566f6e.tar.xz |
Bugs, timezone.
This server should remain using the New_York timezone. Maps start at 9, not 12!
Fixed a bug where default displaycolor was not being used.
Fixed a bug where the user would not be logged in instantly.
Diffstat (limited to 'pages/home.php')
-rw-r--r-- | pages/home.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pages/home.php b/pages/home.php index c2a8e8a..7e5e401 100644 --- a/pages/home.php +++ b/pages/home.php @@ -58,37 +58,6 @@ function tutorialComplete($userID) { return false;
}
-//Get the current day as int.
-$numday = date('w');
-$numday = intval($numday);
-switch ($numday) {
- case 0:
- $mapstyle = 'Thirty';
- break;
- case 1:
- $mapstyle = 'Simple';
- break;
- case 2:
- $mapstyle = "ABC's";
- break;
- case 3:
- $mapstyle = 'Teleport Madness';
- break;
- case 4:
- $mapstyle = 'Rocky Maze';
- break;
- case 5: //Friday
- $mapstyle = 'Side to Side';
- break;
- case 6: //Saturday
- $mapstyle = "Seeing Double";
- break;
-}
-
-
-
-
-
?>
<body>
|