search only for nickname on active angel page

main
Philip Häusler 9 years ago
parent 4684d708fb
commit 522546795b

@ -115,9 +115,8 @@ function admin_active() {
foreach ($users as &$usr) {
if (count($tokens) > 0) {
$match = false;
$index = join("", $usr);
foreach ($tokens as $t)
if (stristr($index, trim($t))) {
if (stristr($usr['Nick'], trim($t))) {
$match = true;
break;
}

Loading…
Cancel
Save