[wip] m_mail LIMIT shall not be quoted
This commit is contained in:
parent
424b2a9ce7
commit
7b1e5bba94
|
@ -311,8 +311,9 @@ ORDER BY
|
||||||
$db->next_record();
|
$db->next_record();
|
||||||
$this->total = $db->f("total");
|
$this->total = $db->f("total");
|
||||||
if ($count != -1) {
|
if ($count != -1) {
|
||||||
$limit = " LIMIT ?, ? ";
|
$offset = intval($offset);
|
||||||
array_push($query_args, $offset, $count);
|
$count = intval($count);
|
||||||
|
$limit = " LIMIT $offset, $count ";
|
||||||
} else {
|
} else {
|
||||||
$limit = "";
|
$limit = "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue