Skip to content

Commit

Permalink
MDL-14018 fixed searching when date order selected; merged from MODOL…
Browse files Browse the repository at this point in the history
…E_19_STABLE
  • Loading branch information
skodak committed Apr 16, 2008
1 parent fb9d1e0 commit 6a5357f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/data/view.php
Expand Up @@ -404,7 +404,7 @@

if ($sort == DATA_LASTNAME) {
$ordering = "u.lastname $order, u.firstname $order";
} else if ($sort == DATA_LASTNAME) {
} else if ($sort == DATA_FIRSTNAME) {
$ordering = "u.firstname $order, u.lastname $order";
} else {
$ordering = "r.timecreated $order";
Expand Down

0 comments on commit 6a5357f

Please sign in to comment.