$membernum = DB::result_first("SELECT COUNT(*) FROM ".DB::table('common_member')." m, ".DB::table('category_'.$modidentifier.'_member')." hm WHERE m.uid=hm.uid");
复制代码
替换为以下代码
$membernum = DB::result_first("SELECT COUNT(*) FROM ".DB::table('common_member')." m, ".DB::table('category_'.$modidentifier.'_member')." hm WHERE m.uid=hm.uid and hm.groupid>1");