Doing some laundry
This commit is contained in:
parent
5c254ee401
commit
62e53698df
|
@ -790,7 +790,6 @@ function admin_page_workerqueue(App $a)
|
||||||
{
|
{
|
||||||
// get jobs from the workerqueue table
|
// get jobs from the workerqueue table
|
||||||
$entries = DBA::select('workerqueue', ['id', 'parameter', 'created', 'priority'], ['done' => 0], ['order'=> ['priority']]);
|
$entries = DBA::select('workerqueue', ['id', 'parameter', 'created', 'priority'], ['done' => 0], ['order'=> ['priority']]);
|
||||||
$r = DBA::toArray($statement);
|
|
||||||
|
|
||||||
$r = [];
|
$r = [];
|
||||||
while ($entry = DBA::fetch($entries)) {
|
while ($entry = DBA::fetch($entries)) {
|
||||||
|
@ -799,6 +798,7 @@ function admin_page_workerqueue(App $a)
|
||||||
$entry['created'] = DateTimeFormat::local($entry['created']);
|
$entry['created'] = DateTimeFormat::local($entry['created']);
|
||||||
$r[] = $entry;
|
$r[] = $entry;
|
||||||
}
|
}
|
||||||
|
DBA::close($entries);
|
||||||
|
|
||||||
$t = get_markup_template('admin/workerqueue.tpl');
|
$t = get_markup_template('admin/workerqueue.tpl');
|
||||||
return replace_macros($t, [
|
return replace_macros($t, [
|
||||||
|
|
Loading…
Reference in a new issue