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.
|
<?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);
|
|
}
|