diff --git a/module/cron/model.php b/module/cron/model.php index e1cf32e1f6..1296b676d5 100644 --- a/module/cron/model.php +++ b/module/cron/model.php @@ -33,7 +33,7 @@ class cronModel extends model public function getCrons($params = '') { return $this->dao->select('*')->from(TABLE_CRON) - ->where('id=16') + ->where('1=1') ->beginIF(strpos($params, 'nostop') !== false)->andWhere('status')->ne('stop')->fi() ->fetchAll('id'); }