|
|
@@ -45,7 +45,7 @@ class AtlasController extends BaseController {
|
|
|
$userNetInfo = UserNetwork::findOneAsArray('USER_ID=:USER_ID', [':USER_ID' => $userId], 'PARENT_UIDS');
|
|
|
$parentUidsArr = explode(',', $userNetInfo['PARENT_UIDS']);
|
|
|
if(!in_array($topUid,$parentUidsArr)){
|
|
|
- return static::notice('会员与当前用户不再同一安置网络内', 400);
|
|
|
+ return static::notice('The member is not in the same placement network as the current user', 400); // 会员与当前用户不再同一安置网络内
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
@@ -114,7 +114,7 @@ class AtlasController extends BaseController {
|
|
|
$userNetInfo = UserNetwork::findOneAsArray('USER_ID=:USER_ID', [':USER_ID' => $userId], 'PARENT_UIDS');
|
|
|
$parentUidsArr = explode(',', $userNetInfo['PARENT_UIDS']);
|
|
|
if(!in_array($topUid,$parentUidsArr)){
|
|
|
- return static::notice('会员与当前用户不再同一安置网络内', 400);
|
|
|
+ return static::notice('The member is not in the same placement network as the current user', 400); // 会员与当前用户不再同一安置网络内
|
|
|
}
|
|
|
}
|
|
|
$period = Period::instance();
|