1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-08 03:54:20 +01:00

Rename variable.

This commit is contained in:
Jean Paul Galea 2015-09-10 20:32:21 +02:00
parent 5d9459ec5c
commit d34eb7895f

View File

@ -60,13 +60,13 @@ class Log
foreach ($this->fields as $val)
$prefix .= "[$val] ";
$final = '';
$suffix = '';
if (is_array($extra)) {
foreach($extra as $key => $value) {
if (is_array($value)) {
$value = implode(':', $value);
}
$final .= " $key=$value ";
$suffix .= " $key=$value ";
}
}
@ -75,6 +75,6 @@ class Log
$this->name . ':' .
$prefix.
$message .
$final);
$suffix);
}
}