[xoops-cvslog 6079] CVS update: xoops2jp/html/kernel

Back to archive index

NobuNobu nobun****@users*****
2007年 1月 1日 (月) 02:37:49 JST


Index: xoops2jp/html/kernel/group.php
diff -u xoops2jp/html/kernel/group.php:1.2.8.4 xoops2jp/html/kernel/group.php:1.2.8.4.2.1
--- xoops2jp/html/kernel/group.php:1.2.8.4	Tue May 16 22:25:07 2006
+++ xoops2jp/html/kernel/group.php	Mon Jan  1 02:37:49 2007
@@ -1,5 +1,5 @@
 <?php
-// $Id: group.php,v 1.2.8.4 2006/05/16 13:25:07 nobunobu Exp $
+// $Id: group.php,v 1.2.8.4.2.1 2006/12/31 17:37:49 nobunobu Exp $
 //  ------------------------------------------------------------------------ //
 //                XOOPS - PHP Content Management System                      //
 //                    Copyright (c) 2000 XOOPS.org                           //
@@ -430,7 +430,7 @@
      * @param int $start offset of first entry to return
      * @return array array of users belonging to the group
      */
-    function getUsersByGroup($groupid, $limit=0, $start=0)
+    function &getUsersByGroup($groupid, $limit=0, $start=0)
     {
         $ret = array();
         $sql = 'SELECT uid FROM ' . $this->db->prefix('groups_users_link') . ' WHERE groupid='.intval($groupid);
@@ -448,7 +448,7 @@
     /**
      * @see getUsersByGroup
      */
-    function getUsersByNoGroup($groupid, $limit=0, $start=0)
+    function &getUsersByNoGroup($groupid, $limit=0, $start=0)
     {
         $ret = array();
 
Index: xoops2jp/html/kernel/member.php
diff -u xoops2jp/html/kernel/member.php:1.2.8.7 xoops2jp/html/kernel/member.php:1.2.8.7.2.1
--- xoops2jp/html/kernel/member.php:1.2.8.7	Sun Apr 23 00:53:00 2006
+++ xoops2jp/html/kernel/member.php	Mon Jan  1 02:37:49 2007
@@ -1,5 +1,5 @@
 <?php
-// $Id: member.php,v 1.2.8.7 2006/04/22 15:53:00 nobunobu Exp $
+// $Id: member.php,v 1.2.8.7.2.1 2006/12/31 17:37:49 nobunobu Exp $
 //  ------------------------------------------------------------------------ //
 //                XOOPS - PHP Content Management System                      //
 //                    Copyright (c) 2000 XOOPS.org                           //
@@ -330,7 +330,7 @@
      * @return array Array of {@link XoopsUser} objects (if $asobject is TRUE)
      * or of associative arrays matching the record structure in the database.
      */
-    function getUsersByGroup($group_id, $asobject = false, $limit = 0, $start = 0)
+    function &getUsersByGroup($group_id, $asobject = false, $limit = 0, $start = 0)
     {
         $user_ids =& $this->_mHandler->getUsersByGroup($group_id, $limit, $start);
         if (!$asobject) {
@@ -351,7 +351,7 @@
     /**
      * @see getUsersByGroup
      */
-    function getUsersByNoGroup($group_id, $asobject = false, $limit = 0, $start = 0)
+    function &getUsersByNoGroup($group_id, $asobject = false, $limit = 0, $start = 0)
     {
         $user_ids =& $this->_mHandler->getUsersByNoGroup($group_id, $limit, $start);
         if (!$asobject) {
@@ -410,7 +410,7 @@
     }
 
     /**
-     * logs in a user with an nd5 encrypted password
+     * logs in a user with an md5 encrypted password
      *
      * @param string $uname username
      * @param string $md5pwd password encrypted with md5


xoops-cvslog メーリングリストの案内
Back to archive index