diff options
Diffstat (limited to 'modules/httpd_stats.cpp')
| -rw-r--r-- | modules/httpd_stats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/httpd_stats.cpp b/modules/httpd_stats.cpp index 2e82970c4..4a5cec3bd 100644 --- a/modules/httpd_stats.cpp +++ b/modules/httpd_stats.cpp @@ -402,9 +402,9 @@ namespace Stats bool desc = params.getBool("desc", false); OrderBy orderby; - if (insp::equalsci(sortmethod, "nick")) + if (insp::ascii_equals(sortmethod, "nick")) orderby = OB_NICK; - else if (insp::equalsci(sortmethod, "lastmsg")) + else if (insp::ascii_equals(sortmethod, "lastmsg")) { orderby = OB_LASTMSG; // We can only check idle times on local users |
