1
0
Fork 0

Command back ...

This commit is contained in:
Michael 2017-11-14 22:13:33 +00:00
commit 9576f6743d
21 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,19 @@
<?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);
}