search only for nickname on active angel page
This commit is contained in:
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…
Reference in New Issue