X-Git-Url: https://dev.renevier.net/?p=syp.git;a=blobdiff_plain;f=inc%2Fhtml%2Fadmin.php;h=d15846a255b7ed4fe5744c87c07213ca32f5d9f9;hp=a96a4700db1a356d62f09804d1b3e45dff019fcd;hb=HEAD;hpb=33a91080919eb054e335b7eae3dc1d927b63e83b diff --git a/inc/html/admin.php b/inc/html/admin.php index a96a470..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"); + } +?> +