No german compound wording :-)
This commit is contained in:
21
src/Worker/CreateShadowEntry.php
Normal file
21
src/Worker/CreateShadowEntry.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* @file src/Worker/CreateShadowEntry.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.
|
||||
*/
|
||||
|
||||
namespace Friendica\Worker;
|
||||
|
||||
require_once("include/threads.php");
|
||||
|
||||
class CreateShadowEntry {
|
||||
public static function execute($message_id = 0) {
|
||||
if (empty($message_id)) {
|
||||
return;
|
||||
}
|
||||
|
||||
add_shadow_entry($message_id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user