mirror of
https://github.com/torrentpier/torrentpier.git
synced 2024-11-07 22:20:36 -08:00
6585b3124d
* Some code cleanup...
* Used hashing for filenames generation
* Revert "Some code cleanup..."
This reverts commit 2dca4c3fb3
.
* Update Attach.php
* Update Attach.php
* Update Attach.php
24 lines
627 B
PHP
24 lines
627 B
PHP
<?php
|
||
/**
|
||
* TorrentPier – Bull-powered BitTorrent tracker engine
|
||
*
|
||
* @copyright Copyright (c) 2005-2024 TorrentPier (https://torrentpier.com)
|
||
* @link https://github.com/torrentpier/torrentpier for the canonical source repository
|
||
* @license https://github.com/torrentpier/torrentpier/blob/master/LICENSE MIT License
|
||
*/
|
||
|
||
if (!defined('BB_ROOT')) {
|
||
die(basename(__FILE__));
|
||
}
|
||
|
||
/**
|
||
* Entry Point
|
||
*/
|
||
function execute_posting_attachment_handling()
|
||
{
|
||
global $attachment_mod;
|
||
|
||
$attachment_mod['posting'] = new TorrentPier\Legacy\AttachPosting();
|
||
$attachment_mod['posting']->posting_attachment_mod();
|
||
}
|