aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorM.Dent <dentm42@dm42.net>2018-10-07 23:18:35 +0000
committerMario <mario@mariovavti.com>2018-10-08 11:12:28 +0200
commit90a983a7e5df6019973dc9f603dd9503d00e074e (patch)
treec2284153b120bfe7d60c5da2260ee7e1d60716ec /Zotlabs
parent58a9cde61d797ca64e38dfafa41b2b37d6bffc39 (diff)
downloadvolse-hubzilla-90a983a7e5df6019973dc9f603dd9503d00e074e.tar.gz
volse-hubzilla-90a983a7e5df6019973dc9f603dd9503d00e074e.tar.bz2
volse-hubzilla-90a983a7e5df6019973dc9f603dd9503d00e074e.zip
Fix too many arguments
(cherry picked from commit 60d5443f000dd77c64b425c33ed341ef822734e8)
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Daemon/Master.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Master.php b/Zotlabs/Daemon/Master.php
index 6fb674d60..ed1adf8fb 100644
--- a/Zotlabs/Daemon/Master.php
+++ b/Zotlabs/Daemon/Master.php
@@ -126,7 +126,6 @@ class Master {
static public function ClearQueue() {
$work = q("select * from config where cat='queuework' and k like '%s'",
- 'workitem_%',
dbesc('workitem%'));
foreach ($work as $workitem) {
$workinfo = unserialize($workitem['v']);
@@ -137,7 +136,6 @@ class Master {
$cls::run($argc,$argv);
}
$work = q("delete from config where cat='queuework' and k like '%s'",
- 'workitem_%',
dbesc('workitem%'));
}