mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
13 lines
282 B
PHP
Executable File
13 lines
282 B
PHP
Executable File
<?php
|
|
|
|
require_once("config.php");
|
|
require_once(WWW_DIR."/lib/postprocess.php");
|
|
|
|
$postprocess = new PostProcess(true);
|
|
$postprocess->processUnwanted();
|
|
$postprocess->processMusicFromMediaInfo();
|
|
$postprocess->processOtherMiscCategory();
|
|
$postprocess->processUnknownCategory();
|
|
|
|
?>
|