1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-09 07:48:28 +00:00
friendica-github/include/create_shadowentry.php
2017-02-26 23:16:49 +00:00

20 lines
403 B
PHP

<?php
/**
* @file include/create_shadowentry.php
* @brief This script creates posts with UID = 0 for a given public post.
*
* This script is started from mod/item.php to save some time when doing a post.
*/
require_once("include/threads.php");
function create_shadowentry_run($argv, $argc) {
if ($argc != 2) {
return;
}
$message_id = intval($argv[1]);
add_shadow_entry($message_id);
}
?>