mirror of
https://github.com/Yubico/yubikey-val.git
synced 2025-02-08 03:54:20 +01:00
Cosmetic changes.
This commit is contained in:
parent
bef2c0cd4a
commit
4c2d4414a0
@ -49,8 +49,8 @@ define('OTP_MAX_LEN', 48); // TOKEN_LEN plus public identity of 0..16
|
|||||||
|
|
||||||
function logdie ($logger, $str)
|
function logdie ($logger, $str)
|
||||||
{
|
{
|
||||||
$logger->log(LOG_INFO, $str);
|
$logger->log(LOG_INFO, $str);
|
||||||
die($str . "\n");
|
die($str . "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
function getHttpVal ($key, $default)
|
function getHttpVal ($key, $default)
|
||||||
@ -74,19 +74,26 @@ function getHttpVal ($key, $default)
|
|||||||
return $val;
|
return $val;
|
||||||
}
|
}
|
||||||
|
|
||||||
function log_format() {
|
function log_format()
|
||||||
$str = "";
|
{
|
||||||
foreach (func_get_args() as $msg)
|
$str = "";
|
||||||
{
|
|
||||||
if (is_array($msg)) {
|
foreach (func_get_args() as $msg)
|
||||||
foreach($msg as $key => $value){
|
{
|
||||||
$str .= "$key=$value ";
|
if (is_array($msg))
|
||||||
|
{
|
||||||
|
foreach ($msg as $key => $value)
|
||||||
|
{
|
||||||
|
$str .= "$key=$value ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$str .= $msg . " ";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
$str .= $msg . " ";
|
return $str;
|
||||||
}
|
|
||||||
}
|
|
||||||
return $str;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sign a http query string in the array of key-value pairs
|
// Sign a http query string in the array of key-value pairs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user