Commit 0621f7e5 authored by chenlei's avatar chenlei

修复发布房源图片不进入审核库

parent ab453590
...@@ -146,6 +146,10 @@ class Sell_model extends Sell_base_model { ...@@ -146,6 +146,10 @@ class Sell_model extends Sell_base_model {
} }
$token = explode("=",$v); $token = explode("=",$v);
$pid = intval($token[1]); $pid = intval($token[1]);
//如果有pid,相当于是之前的图,应该不用再审核了
if ($pid) {
continue;
}
$filename = $v; $filename = $v;
// 图片不以http开头 跳过 // 图片不以http开头 跳过
......
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