Skip to content

Commit

Permalink
make sure we ask for the correct created_at field
Browse files Browse the repository at this point in the history
  • Loading branch information
proditis committed May 10, 2021
1 parent e770231 commit c0f474d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/modules/activity/models/HeadshotSearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function search($params)
'target_id' => $this->target_id,
'first' => $this->first,
'rating' => $this->rating,
'created_at' => $this->created_at,
'headshot.created_at' => $this->created_at,
]);
$query->andFilterWhere(['like', 'player.username', $this->username]);
$query->andFilterWhere(['like', 'target.fqdn', $this->fqdn]);
Expand Down

0 comments on commit c0f474d

Please sign in to comment.