diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/home.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/pages/home.php b/pages/home.php index 4f69d67..50d3952 100644 --- a/pages/home.php +++ b/pages/home.php @@ -11,22 +11,22 @@ include_once ('./includes/mapoftheday.php'); include_once ('./includes/db.inc.php');
include_once ('./includes/datas.php');
-//Get custom wall colors;
-$wallColor = '';
-$wallEmblem = '';
+
$noteScript = '';
if ($accepted) {
$userID = $_SESSION['userID'];
- $sql = "
- SELECT
- userData.wallColor,
- userData.wallEmblem
- FROM `userData`
- WHERE userID = '$userID' ";
- $result = mysql_query($sql);
- if ($result)
- list($wallColor, $wallEmblem) = mysql_fetch_row($result);
+ // $sql = "
+ // SELECT
+ // userData.wallColor,
+ // userData.wallEmblem
+ // FROM `userData`
+ // WHERE userID = '$userID' ";
+ // $result = mysql_query($sql);
+ // if ($result)
+ // list($wallColor, $wallEmblem) = mysql_fetch_row($result);
+ //global $wallColor;
+ //echo ": Wallcolor: $wallColor :" ;
//$note = getNotified($userID);
$note = false;
|