set no time limit
This commit is contained in:
parent
3edc580c14
commit
0fc75d13f5
|
@ -169,7 +169,8 @@ class Admin_DownController extends Zend_Controller_Action
|
||||||
|
|
||||||
//离线数据申请管理
|
//离线数据申请管理
|
||||||
function offlineappAction()
|
function offlineappAction()
|
||||||
{
|
{
|
||||||
|
set_time_limit(0);
|
||||||
include_once("Dataorder.php");
|
include_once("Dataorder.php");
|
||||||
$DO = new Dataorder($this->db);
|
$DO = new Dataorder($this->db);
|
||||||
|
|
||||||
|
@ -223,7 +224,7 @@ class Admin_DownController extends Zend_Controller_Action
|
||||||
|
|
||||||
$sql="select applicationform as pdflink from offlineapp where id=?";
|
$sql="select applicationform as pdflink from offlineapp where id=?";
|
||||||
$row=$this->db->fetchRow($sql,array($start));
|
$row=$this->db->fetchRow($sql,array($start));
|
||||||
$filecontent=file_get_contents($row['pdflink']);
|
$filecontent=file_get_contents($row['pdflink']);
|
||||||
|
|
||||||
//对每条数据的管理员用户发送相应的邮件通知,同一用户的邮件需要合并
|
//对每条数据的管理员用户发送相应的邮件通知,同一用户的邮件需要合并
|
||||||
//需要取出对应数据的标题、uuid,以及对应的作者的email(一条数据可能有多个作者,一次申请可能有多条数据对应同一个作者)
|
//需要取出对应数据的标题、uuid,以及对应的作者的email(一条数据可能有多个作者,一次申请可能有多条数据对应同一个作者)
|
||||||
|
|
Loading…
Reference in New Issue