Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
341 B
16 lines
341 B
<?php |
|
|
|
function update_queue_time($id) { |
|
logger('queue: requeue item ' . $id); |
|
q("UPDATE `queue` SET `last` = '%s' WHERE `id` = %d LIMIT 1", |
|
dbesc(datetime_convert()), |
|
intval($id) |
|
); |
|
} |
|
|
|
function remove_queue_item($id) { |
|
logger('queue: remove queue item ' . $id); |
|
q("DELETE FROM `queue` WHERE `id` = %d LIMIT 1", |
|
intval($id) |
|
); |
|
}
|
|
|