about summary refs log tree commit diff stats
path: root/central/trunk/login.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-16 17:01:43 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-16 17:01:43 +0000
commit01669b5b3e38d4fd1138034458ad1e9339c8cf9c (patch)
tree5102afaff0a7232513917f9c163d037d56e7b1fe /central/trunk/login.php
parentc74b7d042daa0c419edfeaa97efbf7d8a216ac57 (diff)
downloadinstadisc-01669b5b3e38d4fd1138034458ad1e9339c8cf9c.tar.gz
instadisc-01669b5b3e38d4fd1138034458ad1e9339c8cf9c.tar.bz2
instadisc-01669b5b3e38d4fd1138034458ad1e9339c8cf9c.zip
Central: Fixed a few minor errors
Ok, this is sort of part [15], part strange unnoticed error(s). Refs #25
Diffstat (limited to 'central/trunk/login.php')
-rw-r--r--central/trunk/login.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/central/trunk/login.php b/central/trunk/login.php index b40b467..19c5dc3 100644 --- a/central/trunk/login.php +++ b/central/trunk/login.php
@@ -14,7 +14,7 @@ if (!isset($_GET['submit']))
14 14
15 if (instaDisc_verifyUser($_POST['username'], $_POST['password'])) 15 if (instaDisc_verifyUser($_POST['username'], $_POST['password']))
16 { 16 {
17 $_SESSION['username'] == $_POST['username']; 17 $_SESSION['username'] = $_POST['username'];
18 18
19 $template = new FITemplate('loggedin'); 19 $template = new FITemplate('loggedin');
20 $template->add('SITENAME', instaDisc_getConfig('siteName')); 20 $template->add('SITENAME', instaDisc_getConfig('siteName'));