X-Git-Url: https://dev.renevier.net/?p=syp.git;a=blobdiff_plain;f=inc%2Fhtml%2Fadmin.php;h=d15846a255b7ed4fe5744c87c07213ca32f5d9f9;hp=ca2dd4dcd204bca2755f3cdde29212e4519b5c80;hb=HEAD;hpb=5c3bb419eb4f9728849969fe7cff84f0260066c8 diff --git a/inc/html/admin.php b/inc/html/admin.php index ca2dd4d..d15846a 100644 --- a/inc/html/admin.php +++ b/inc/html/admin.php @@ -7,7 +7,7 @@ $error = false; if (!@include_once ("./inc/settings.php")) { $error = true; } -require_once ("./inc/db/mysql.php"); +require_once ("./inc/db/" . (defined ("DBTYPE")? DBTYPE: "mysql") . ".php"); require_once ("./inc/utils.php"); try { @@ -39,8 +39,10 @@ if (!$usrtblexists || !$itemstblexists) { exit (); } // if ($error) - $user = $_COOKIE [sprintf ("%suser", DBPREFIX)]; - $pwd = $_COOKIE [sprintf ("%sauth", DBPREFIX)]; + $userkey = sprintf ("%suser", DBPREFIX); + $user = (isset($_COOKIE [$userkey]))? $_COOKIE[$userkey]: ""; + $pwdkey = sprintf ("%sauth", DBPREFIX); + $pwd = (isset($_COOKIE [$pwdkey]))? $_COOKIE[$pwdkey]: ""; $logged = ($connection->checkpwdmd5 ($user, $pwd)); ?> +\n"); + } +?> +