Adjust database, fix bug in munzee.php

master
Skylar Ittner 5 years ago
parent 53aa167e79
commit 696abb6641

Binary file not shown.

@ -17,7 +17,7 @@ if (empty($VARS['code'])) {
if ($user->checkPassword($VARS["password"], true)) {
$_SESSION["userid"] = User::byUsername($VARS["username"])->getUID();
$_SESSION["munzeeauthed"] = true;
header("Location: https://api.munzee.com/oauth?response_type=code&client_id=" . $SETTINGS["munzee"]["id"] . "&redirect_uri=" + $SETTINGS["munzee"]["redirecturl"] + "&scope=read capture_light");
header("Location: https://api.munzee.com/oauth?response_type=code&client_id=" . $SETTINGS["munzee"]["id"] . "&redirect_uri=" . urlencode($SETTINGS["munzee"]["redirecturl"]) . "&scope=read capture_light");
die("OK");
}
die("Login incorrect.");

Loading…
Cancel
Save