diff options
| author | Horus3 | 2014-03-12 02:50:30 +0100 |
|---|---|---|
| committer | Horus3 | 2014-03-12 02:50:30 +0100 |
| commit | 8970954933ecf4b5c842027faa7c52f85cc25fe2 (patch) | |
| tree | e502119b624197871550d72d55c2e9a9f2a4f05b /www/index.php | |
| parent | 0148c370ea13ee0469bd67260cf8c9fe9c97677d (diff) | |
| download | files.iamfabulous.de-8970954933ecf4b5c842027faa7c52f85cc25fe2.tar.gz | |
Structure in functions. Stronger hash algorith for password safety, also pepper.
Diffstat (limited to 'www/index.php')
| -rw-r--r-- | www/index.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/www/index.php b/www/index.php index 178e66d..0ce2d72 100644 --- a/www/index.php +++ b/www/index.php @@ -3,7 +3,6 @@ session_start(); require_once("functions.php"); -require_once("interface_functions.php"); $db = new SQLite3("../database/sqlite.db"); @@ -25,7 +24,7 @@ if(empty($_GET)){ if(empty($_GET["name"])){ switch($_GET["task"]){ case("login"): - login($db); + login($db) break; case("logout"): logout(); |
