change var name

This commit is contained in:
wlx 2013-01-28 14:49:29 +00:00
parent a3749061ba
commit 259bf8ecee
1 changed files with 2 additions and 2 deletions

View File

@ -2175,9 +2175,9 @@ class Admin_DataController extends Zend_Controller_Action
$sql="select * from xunsearch where uuid=?"; $sql="select * from xunsearch where uuid=?";
$sth = $this->db->prepare($sql); $sth = $this->db->prepare($sql);
$sth->execute(array($row['uuid'])); $sth->execute(array($row['uuid']));
$data = $sth->fetch(); $data_search = $sth->fetch();
$search=new Search(); $search=new Search();
$search->update($data); $search->update($data_search);
if (empty($row)) //无对应记录 if (empty($row)) //无对应记录
{ {