In your ubbthreads.tmpl file, just below this line:
<? //UBBTREMARK
add this:
echo <<<UBBTPRINT
<table border="0" cellspacing="0" cellpadding="5">
<tr>
<td align="left" valign="top">
UBBTPRINT;
include "addons/ubbtnews.php";
echo <<<UBBTPRINT
</td>
<td align="left" valign="top">
UBBTPRINT;
Ok now just before this line:
/* UBBTREMARK */ ?>
Add this:
echo <<<UBBTPRINT
</td>
</tr>
</table>
UBBTPRINT;
That should be all that is needed to pull the ubbtnews.php script into the ubbthreads.tmpl file. Also, remember to remove this line:
require ("$path/main.inc.php"); from the ubbtnews.php script because it's not needed a second time. (ubbthreads.php has already called it)
