mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
Fix: Group member search by firstname/lastname
This commit is contained in:
parent
d557fe1f25
commit
9375a96952
@ -23,6 +23,7 @@ migrate your code to SpreadsheetExport. PHPOffice is replaced by PHPSpreadsheet.
|
||||
- Chg: `PendingRegistrationsController->createCVS` removed
|
||||
- Fix: Stream image preview size not changeable
|
||||
- Fix: Increased maximum e-mail address length from 45 characters to 254
|
||||
- Fix: Group member search by firstname/lastname
|
||||
|
||||
|
||||
1.2.4 (December 13, 2017)
|
||||
|
@ -54,7 +54,8 @@ class UserSearch extends User
|
||||
*/
|
||||
public function search($params)
|
||||
{
|
||||
$query = ($this->query == null) ? User::find()->joinWith('profile') : $this->query;
|
||||
$query = ($this->query == null) ? User::find() : $this->query;
|
||||
$query->joinWith('profile');
|
||||
|
||||
$dataProvider = new ActiveDataProvider([
|
||||
'query' => $query,
|
||||
|
Loading…
x
Reference in New Issue
Block a user