[xoops-cvslog 2170] CVS update: xoops2jp/html/modules/user/admin/class

Back to archive index

NobuNobu nobun****@users*****
2006年 2月 3日 (金) 22:44:51 JST


Index: xoops2jp/html/modules/user/admin/class/XoopsGroupEx.class.php
diff -u xoops2jp/html/modules/user/admin/class/XoopsGroupEx.class.php:1.1.2.1 xoops2jp/html/modules/user/admin/class/XoopsGroupEx.class.php:1.1.2.2
--- xoops2jp/html/modules/user/admin/class/XoopsGroupEx.class.php:1.1.2.1	Sun Dec 25 19:55:01 2005
+++ xoops2jp/html/modules/user/admin/class/XoopsGroupEx.class.php	Fri Feb  3 22:44:50 2006
@@ -14,15 +14,15 @@
 		parent::XoopsGroup();
 		$this->initVar('user_count', XOBJ_DTYPE_INT, null, false);
 
-		$this->setVar('groupid', $group->getVar('groupid'));
-		$this->setVar('name', $group->getVar('name'));
-		$this->setVar('description', $group->getVar('description'));
-		$this->setVar('group_type', $group->getVar('group_type'));
+		$this->setVar('groupid', $group->get('groupid'));
+		$this->setVar('name', $group->get('name'));
+		$this->setVar('description', $group->get('description'));
+		$this->setVar('group_type', $group->get('group_type'));
 
 		if (is_object($group)) {
 			$memberHandler =& xoops_gethandler('member');
 
-			$this->setVar('user_count', $memberHandler->getUserCountByGroup($this->getVar('groupid')));
+			$this->setVar('user_count', $memberHandler->getUserCountByGroup($this->get('groupid')));
 		}
 	}
 }


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