Minahito
minah****@users*****
2007年 2月 19日 (月) 15:54:44 JST
Index: xoops2jp/html/class/xml/rpc/xmlrpcapi.php diff -u xoops2jp/html/class/xml/rpc/xmlrpcapi.php:1.2.8.1 xoops2jp/html/class/xml/rpc/xmlrpcapi.php:1.2.8.1.4.1 --- xoops2jp/html/class/xml/rpc/xmlrpcapi.php:1.2.8.1 Wed Oct 19 02:18:06 2005 +++ xoops2jp/html/class/xml/rpc/xmlrpcapi.php Mon Feb 19 15:54:44 2007 @@ -1,5 +1,5 @@ <?php -// $Id: xmlrpcapi.php,v 1.2.8.1 2005/10/18 17:18:06 minahito Exp $ +// $Id: xmlrpcapi.php,v 1.2.8.1.4.1 2007/02/19 06:54:44 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -158,7 +158,8 @@ { if (strtolower(get_class($this)) != 'xoopsapi') { require_once(XOOPS_ROOT_PATH.'/class/xml/rpc/xoopsapi.php'); - return new XoopsApi($params, $this->response, $this->module); + $instance =& new XoopsApi($params, $this->response, $this->module); + return $instance; } else { return $this; } Index: xoops2jp/html/class/xml/rpc/xoopsapi.php diff -u xoops2jp/html/class/xml/rpc/xoopsapi.php:1.2 xoops2jp/html/class/xml/rpc/xoopsapi.php:1.2.26.1 --- xoops2jp/html/class/xml/rpc/xoopsapi.php:1.2 Fri Mar 18 21:51:55 2005 +++ xoops2jp/html/class/xml/rpc/xoopsapi.php Mon Feb 19 15:54:44 2007 @@ -1,5 +1,5 @@ <?php -// $Id: xoopsapi.php,v 1.2 2005/03/18 12:51:55 onokazu Exp $ +// $Id: xoopsapi.php,v 1.2.26.1 2007/02/19 06:54:44 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -253,6 +253,9 @@ $this->response->add($struct); } } + + $ret = null; + return ret; } } @@ -311,6 +314,9 @@ $this->response->add($arr); } } + + $ret = null; + return $ret; } } @@ -341,6 +347,9 @@ $this->response->add($arr); } } + + $ret = null; + return $ret; } } }