1
This commit is contained in:
parent
1ef6a9a724
commit
b70e3baae8
@ -55,7 +55,7 @@ class BaseController {
|
||||
{
|
||||
$net = getReqVal('_net', '');
|
||||
$zid = $net && count($net) > 3 ? $net[2] : 3;
|
||||
return $zid < 1 || $zid > 4 ? 3 : $zid;
|
||||
return ($zid >= 1 && $zid <= 4) ? $zid : 3;
|
||||
}
|
||||
|
||||
public function _rspErr($errcode, $errmsg)
|
||||
|
Loading…
x
Reference in New Issue
Block a user