Revize 2501
Přidáno uživatelem David Raška před více než 9 roky(ů)
freenetis/branches/1.2/application/models/email_queue.php | ||
---|---|---|
public function get_current_queue($count = 10)
|
||
{
|
||
return $this
|
||
->where('state <> ',self::STATE_OK)
|
||
->where('state <> ',self::STATE_READ)
|
||
->in('state',
|
||
array(
|
||
self::STATE_NEW,
|
||
self::STATE_FAIL
|
||
)
|
||
)
|
||
->orderby('access_time')
|
||
->limit($count,0)
|
||
->find_all();
|
Také k dispozici: Unified diff
Upravy:
Otoceni podminky pro vyber fronty e-mailu, aby v budoucnu nedoslo k nechtenym chybam