Skip to content

Commit

Permalink
Fixed user search to include full name
Browse files Browse the repository at this point in the history
  • Loading branch information
ccoulson committed Jul 18, 2011
1 parent 861d52f commit 4f50244
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ protected override IEnumerable ExecuteSelect(DataSourceSelectArguments selectArg
//Filter the data if a filter is provided
if (_owner.SearchText.Length > 0)
{
dataView.RowFilter = string.Format("Name LIKE '%{0}%' OR Email LIKE '%{0}%'", _owner.SearchText);
dataView.RowFilter = string.Format("Name LIKE '%{0}%' OR Email LIKE '%{0}%' OR Title LIKE '%{0}%'", _owner.SearchText);
}
else
{
Expand Down

0 comments on commit 4f50244

Please sign in to comment.