修改namespace 小写为大写,添加了历史offlineapp信息记录的调用
This commit is contained in:
parent
8329e665a8
commit
849918408b
|
@ -1854,7 +1854,7 @@ class DataController extends Zend_Controller_Action
|
|||
//$this->_redirect('/data/order');
|
||||
}
|
||||
} else {
|
||||
$sql="select u.* from users u left join offlineapp o on u.id=o.userid where u.id=?";
|
||||
$sql="select u.*,o.* from users u left join offlineapp o on u.id=o.userid where u.id=? ORDER BY o.id DESC";
|
||||
$row=$this->db->fetchRow($sql,array($userid));
|
||||
/*$row=$ut->fetchRow('id='.$userid);
|
||||
$formData['email']=$row->email;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
namespace order;
|
||||
namespace Order;
|
||||
|
||||
use Helpers\View as view;
|
||||
|
||||
|
|
Loading…
Reference in New Issue