1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00
php-e107/e107_plugins/forum/e_emailprint.php
2022-03-10 12:54:22 -08:00

12 lines
217 B
PHP
Executable File

<?php
if (!defined('e107_INIT')) { exit; }
function print_item($thread_id)
{
// moved to e_print.php
}
function email_item($thread_id)
{
return e107::getAddon('forum','e_print')->render($thread_id); // Quick Fix
}