Update DBClean.php
This commit is contained in:
parent
d8646340c9
commit
7f4bce67a8
1 changed files with 3 additions and 3 deletions
|
@ -323,12 +323,12 @@ class DBClean {
|
||||||
Config::set('system', 'dbclean-last-id-9', $last_id);
|
Config::set('system', 'dbclean-last-id-9', $last_id);
|
||||||
} elseif ($stage == 10) {
|
} elseif ($stage == 10) {
|
||||||
$last_id = Config::get('system', 'dbclean-last-id-10', 0);
|
$last_id = Config::get('system', 'dbclean-last-id-10', 0);
|
||||||
$days = intval(Config::get('system', 'dbclean_expire_conversation', 7));
|
$days = intval(Config::get('system', 'dbclean_expire_conversation', 90));
|
||||||
|
|
||||||
logger("Deleting old conversations. Last created: ".$last_id);
|
logger("Deleting old conversations. Last created: ".$last_id);
|
||||||
$r = dba::p("SELECT `received`, `item-uri` FROM `conversation`
|
$r = dba::p("SELECT `received`, `item-uri` FROM `conversation`
|
||||||
WHERE `received` < UTC_TIMESTAMP() - INTERVAL $days DAY
|
WHERE `received` < UTC_TIMESTAMP() - INTERVAL ? DAY
|
||||||
ORDER BY `received` LIMIT ".intval($limit));
|
ORDER BY `received` LIMIT ?", $days, intval($limit));
|
||||||
$count = dba::num_rows($r);
|
$count = dba::num_rows($r);
|
||||||
if ($count > 0) {
|
if ($count > 0) {
|
||||||
logger("found old conversations: ".$count);
|
logger("found old conversations: ".$count);
|
||||||
|
|
Loading…
Reference in a new issue