|
@@ -106,7 +106,9 @@ class Account extends Base
|
|
|
// }
|
|
|
$remark = isset($this->post['remark'])&&$this->post['remark']!=="" ? trim($this->post['remark']) :"";
|
|
|
$video = isset($this->post['video'])&&$this->post['video']!=="" ? $this->post['video'] :"";
|
|
|
-
|
|
|
+ if($video==""){
|
|
|
+ return error_show(1004,"参数video 不能为空");
|
|
|
+ }
|
|
|
Db::startTrans();
|
|
|
try {
|
|
|
$salt = makeSalt();
|
|
@@ -260,6 +262,9 @@ class Account extends Base
|
|
|
|
|
|
$rela['remark'] = isset($this->post['remark'])&&$this->post['remark']!=="" ? trim($this->post['remark']) :"";
|
|
|
$video = isset($this->post['video'])&&$this->post['video']!=="" ? $this->post['video'] :"";
|
|
|
+ if($video==""){
|
|
|
+ return error_show(1004,"参数video 不能为空");
|
|
|
+ }
|
|
|
$rela['updatetime'] = date("Y-m-d H:i:s");
|
|
|
|
|
|
Db::startTrans();
|