Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/admin/userlookup.thtml
blob: ac4bc103c1a25b702c3db0d582badeca26061795 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
header('Content-type: text/plain');
define('NO_MICROTIME', true);

if (count($results) > 0) {
    foreach ($results as $result) {
        echo "{$result}\n";
    }
}
?>