|
@@ -233,6 +233,8 @@ class BeanRepository
|
|
|
foreach ($circleList as $circle) {
|
|
|
$temp = [];
|
|
|
$temp['circle_id'] = $circle['id'];
|
|
|
+ $temp['image'] = $circle['image'];
|
|
|
+ $temp['join_limit'] = $circle['join_limit'];
|
|
|
$temp['circle_name'] = mb_substr($circle['name'], 0, 6);
|
|
|
$circles[] = $temp;
|
|
|
}
|
|
@@ -401,6 +403,8 @@ class BeanRepository
|
|
|
foreach ($circleList as $circle) {
|
|
|
$temp = [];
|
|
|
$temp['circle_id'] = $circle['id'];
|
|
|
+ $temp['image'] = $circle['image'];
|
|
|
+ $temp['join_limit'] = $circle['join_limit'];
|
|
|
$temp['circle_name'] = mb_substr($circle['name'], 0, 6);
|
|
|
$circles[] = $temp;
|
|
|
}
|