From ae3d54a07f158ed9d2e337032fe8e958c745b1b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Wed, 8 Aug 2001 14:36:58 +0000 Subject: [PATCH] Ooops, fix a xhtml1.0 coding typo --- lib.inc.php3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.inc.php3 b/lib.inc.php3 index 12fa00b63..fe86c07ca 100755 --- a/lib.inc.php3 +++ b/lib.inc.php3 @@ -875,11 +875,11 @@ var errorMsg2 = 'name) . ' DESC'; - $order_img = ' ASC'; + $order_img = ' ASC'; } else if (substr($sql_order, -4) == 'DESC' && $is_in_sort) { $sort_order = ' ORDER BY ' . backquote($field->name) . ' ASC'; - $order_img = ' DESC'; + $order_img = ' DESC'; } if (eregi('(.*)( LIMIT (.*)| PROCEDURE (.*)| FOR UPDATE| LOCK IN SHARE MODE)', $unsorted_sql_query, $regs3)) { $sorted_sql_query = $regs3[1] . $sort_order . $regs3[2];