mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:42:53 +00:00
Doing some laundry
This commit is contained in:
parent
5c254ee401
commit
62e53698df
1 changed files with 1 additions and 1 deletions
|
@ -790,7 +790,6 @@ function admin_page_workerqueue(App $a)
|
|||
{
|
||||
// get jobs from the workerqueue table
|
||||
$entries = DBA::select('workerqueue', ['id', 'parameter', 'created', 'priority'], ['done' => 0], ['order'=> ['priority']]);
|
||||
$r = DBA::toArray($statement);
|
||||
|
||||
$r = [];
|
||||
while ($entry = DBA::fetch($entries)) {
|
||||
|
@ -799,6 +798,7 @@ function admin_page_workerqueue(App $a)
|
|||
$entry['created'] = DateTimeFormat::local($entry['created']);
|
||||
$r[] = $entry;
|
||||
}
|
||||
DBA::close($entries);
|
||||
|
||||
$t = get_markup_template('admin/workerqueue.tpl');
|
||||
return replace_macros($t, [
|
||||
|
|
Loading…
Reference in a new issue