aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2025-01-04 11:19:03 +0100
committerMario Vavti <mario@mariovavti.com>2025-01-04 11:19:03 +0100
commit48ef4744acee2cab2202749182bab553c78e9e68 (patch)
tree80907640eff7afe3c3d79e2a9d6c91316de61574
parenta17cb75baf5c28458c84d05eef3954d9dd64edb8 (diff)
downloadvolse-hubzilla-48ef4744acee2cab2202749182bab553c78e9e68.tar.gz
volse-hubzilla-48ef4744acee2cab2202749182bab553c78e9e68.tar.bz2
volse-hubzilla-48ef4744acee2cab2202749182bab553c78e9e68.zip
remove redundant arguments
-rw-r--r--Zotlabs/Daemon/Importdoc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Importdoc.php b/Zotlabs/Daemon/Importdoc.php
index fd5434be5..782eded96 100644
--- a/Zotlabs/Daemon/Importdoc.php
+++ b/Zotlabs/Daemon/Importdoc.php
@@ -45,12 +45,12 @@ class Importdoc {
// remove old files that weren't updated (indicates they were most likely deleted).
$i = q("select id, uid from item where item_type = 5 and edited < %s - INTERVAL %s",
db_utcnow(),
- db_quoteinterval('14 DAY', true)
+ db_quoteinterval('14 DAY')
);
if ($i) {
foreach ($i as $iv) {
- drop_item($iv['id'], DROPITEM_NORMAL, uid: $iv['uid']);
+ drop_item($iv['id'], uid: $iv['uid']);
}
}
}