1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-01-31 16:52:20 +01:00

Fix terminology.

This commit is contained in:
Simon Josefsson 2009-08-28 14:30:04 +00:00
parent ef0effe131
commit 26499b5a24

View File

@ -45,12 +45,12 @@ if (!$result) {
debug("SQL query error: " . mysql_error());
logdie("code=maxiderror");
}
$max = mysql_fetch_row ($result);
$id = mysql_fetch_row ($result);
mysql_free_result($result);
$max = $max[0] + 1;
$id = $id[0] + 1;
$query = "INSERT INTO clients (id, created, email, otp, secret) " .
"VALUES (\"$max\", NOW(), " . mysql_quote($email) . ", " .
"VALUES (\"$id\", NOW(), " . mysql_quote($email) . ", " .
mysql_quote($otp) . ", " . "\"$b64rnd\")";
if (!mysql_query($query, $conn)) {
debug("SQL query error: " . mysql_error());
@ -59,6 +59,6 @@ if (!mysql_query($query, $conn)) {
mysql_close($conn);
debug("Successfully added client ID $max");
echo "code=ok\nmax=$max\nkey=$b64rnd\n";
debug("Successfully added client ID $id");
echo "code=ok\nid=$id\nkey=$b64rnd\n";
?>