Commit 0d62550c authored by zhuwei's avatar zhuwei

1

parent 4707953d
...@@ -160,7 +160,7 @@ class Square extends Basic ...@@ -160,7 +160,7 @@ class Square extends Basic
if (count($square_data) <= 0) { if (count($square_data) <= 0) {
return $this->response("101", "不存在此开盘广场"); return $this->response("101", "不存在此开盘广场");
} }
$level = isset($params['level']) ? 0 : $params['level']; $level = !isset($params['level']) ? 0 : $params['level'];
switch ($level) { switch ($level) {
case 0: case 0:
if (!isset($params['author_id'])) { if (!isset($params['author_id'])) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment