Minahito
minah****@users*****
2006年 10月 13日 (金) 19:10:49 JST
Index: xoops2jp/html/class/criteria.php diff -u xoops2jp/html/class/criteria.php:1.2.8.8.2.1 xoops2jp/html/class/criteria.php:1.2.8.8.2.2 --- xoops2jp/html/class/criteria.php:1.2.8.8.2.1 Fri Oct 13 15:15:09 2006 +++ xoops2jp/html/class/criteria.php Fri Oct 13 19:10:49 2006 @@ -1,5 +1,5 @@ <?php -// $Id: criteria.php,v 1.2.8.8.2.1 2006/10/13 06:15:09 minahito Exp $ +// $Id: criteria.php,v 1.2.8.8.2.2 2006/10/13 10:10:49 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -164,9 +164,11 @@ function setSort($sort, $order = null) { $this->sort[0] = $sort; - if ($this->order[0] == null) { + + if (!isset($this->order[0])) { $this->order[0] = 'ASC'; } + if ($order != null) { if (strtoupper($order) == 'ASC') { $this->order[0] = 'ASC'; @@ -200,7 +202,7 @@ return $this->sort[0]; } else { - return ''; + return 'ASC'; } }