- Patch #218313 by jvandyk: made sure that MySQL keywords are uppercase.

merge-requests/26/head
Dries Buytaert 2008-02-08 03:10:32 +00:00
parent 97a739e14c
commit 912d10fb09
1 changed files with 1 additions and 1 deletions

View File

@ -949,5 +949,5 @@ function _forum_get_topic_order($sortby) {
function _forum_get_topic_order_sql($sortby) {
$order = _forum_get_topic_order($sortby);
return $order['field'] .' '. $order['sort'];
return $order['field'] .' '. strtoupper($order['sort']);
}