Minahito
minah****@users*****
2006年 4月 21日 (金) 12:03:19 JST
Index: xoops2jp/html/class/database/mysqldatabase.php diff -u xoops2jp/html/class/database/mysqldatabase.php:1.2.8.4 xoops2jp/html/class/database/mysqldatabase.php:1.2.8.5 --- xoops2jp/html/class/database/mysqldatabase.php:1.2.8.4 Tue Feb 28 23:36:04 2006 +++ xoops2jp/html/class/database/mysqldatabase.php Fri Apr 21 12:03:19 2006 @@ -1,5 +1,5 @@ <?php -// $Id: mysqldatabase.php,v 1.2.8.4 2006/02/28 14:36:04 nobunobu Exp $ +// $Id: mysqldatabase.php,v 1.2.8.5 2006/04/21 03:03:19 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -417,7 +417,8 @@ */ function &query($sql, $limit=0, $start=0) { - return $this->queryF($sql, $limit, $start); + $result =& $this->queryF($sql, $limit, $start); + return $result; } }