作者 邓超

es

@@ -2,6 +2,8 @@ @@ -2,6 +2,8 @@
2 2
3 namespace Lib; 3 namespace Lib;
4 4
  5 +use Model\listsSql;
  6 +
5 /** 7 /**
6 * db 查询 8 * db 查询
7 * @author:dc 9 * @author:dc
@@ -147,6 +149,16 @@ trait DbQuery { @@ -147,6 +149,16 @@ trait DbQuery {
147 149
148 $sql = "update `{$table}` set ".dbUpdate($data). " where ".$where; 150 $sql = "update `{$table}` set ".dbUpdate($data). " where ".$where;
149 151
  152 + if($table == listsSql::$table){
  153 + if ($data['seen']??''){
  154 + @file_put_contents(LOG_PATH.'/seen.log',print_r([
  155 + $sql,
  156 + $_REQUEST,
  157 + php_sapi_name()
  158 + ],true),FILE_APPEND);
  159 + }
  160 + }
  161 +
150 $data = $this->getData($data); 162 $data = $this->getData($data);
151 163
152 $query = $this->query([$sql,$data]); 164 $query = $this->query([$sql,$data]);
@@ -480,9 +480,7 @@ class SyncMail { @@ -480,9 +480,7 @@ class SyncMail {
480 Event::call('mail_sync_list',$id, $data); 480 Event::call('mail_sync_list',$id, $data);
481 481
482 }else{ 482 }else{
483 - if(!$this->db->update(listsSql::$table,$data,dbWhere(['id'=> $id]))){  
484 - $this->db->update('lists_hot',$data,dbWhere(['id'=> $id]));  
485 - } 483 + $this->db->update(listsSql::$table,$data,dbWhere(['id'=> $id]));
486 } 484 }
487 485
488 //TODO 如果header 头信息里面有2段数据 第二段就作为内容解析 486 //TODO 如果header 头信息里面有2段数据 第二段就作为内容解析