Remove unnecessary Profile::pkeyGet

Thanks for the info, Evan.
This commit is contained in:
Craig Andrews
2009-09-15 17:08:26 -04:00
parent 80ba0603c6
commit 4a97ad9efe
2 changed files with 1 additions and 6 deletions

View File

@@ -62,7 +62,7 @@ class AutocompleteAction extends Action
$user->whereAdd('nickname like \'' . trim($user->escape($q), '\'') . '%\'');
$user->find();
while($user->fetch()) {
$profile = Profile::pkeyGet(array('id' => $user->id));
$profile = Profile::staticGet($user->id);
$this->results[]=array('nickname' => $user->nickname, 'fullname'=> $profile->fullname, 'type'=>'user');
}
}