mirror of
https://github.com/Yubico/yubikey-val.git
synced 2025-02-27 06:54:16 +01:00
Optimize. From Klas.
This commit is contained in:
parent
ecd49aca59
commit
7a4e2d37e3
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
# Copyright (c) 2010-2013 Yubico AB
|
# Copyright (c) 2010-2014 Yubico AB
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -70,7 +70,7 @@ while($row = $db->fetchArray($result)) {
|
|||||||
# For some reason PostgreSQL returns empty strings for false values?!
|
# For some reason PostgreSQL returns empty strings for false values?!
|
||||||
$active = "0";
|
$active = "0";
|
||||||
}
|
}
|
||||||
$everything = $everything .
|
$everything .=
|
||||||
$row['id'] . "\t" . $active . "\t" .
|
$row['id'] . "\t" . $active . "\t" .
|
||||||
$row['secret'] . "\n";
|
$row['secret'] . "\n";
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
# Copyright (c) 2012-2013 Yubico AB
|
# Copyright (c) 2012-2014 Yubico AB
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -65,7 +65,7 @@ $result=$db->customQuery("SELECT yk_publicname, yk_counter, yk_use ".
|
|||||||
"FROM yubikeys WHERE active = false ".
|
"FROM yubikeys WHERE active = false ".
|
||||||
"ORDER BY yk_publicname");
|
"ORDER BY yk_publicname");
|
||||||
while($row = $result->fetch(PDO::FETCH_ASSOC)) {
|
while($row = $result->fetch(PDO::FETCH_ASSOC)) {
|
||||||
$everything = $everything .
|
$everything .=
|
||||||
$row['yk_publicname'] . "\t" . $row['yk_counter'] . "\t" . $row['yk_use'] .
|
$row['yk_publicname'] . "\t" . $row['yk_counter'] . "\t" . $row['yk_use'] .
|
||||||
"\n";
|
"\n";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user