Link below shows a fix in TP for use with SMF gallery
http://www.tinyportal.net/index.php?topic=34242.msg276667#msg276667For the lazy people I have posted these fixes here below:
In TPortal.php find this:
function doTPcat()
{
//return if not quite a category
if(isset($_GET['action']) && $_GET['action'] == 'manageboards')
return;
Add after this:
if(isset($_GET['action']) && $_GET['action'] == 'gallery' && isset($_GET['cat']))
return;
if(isset($_GET['action']) && $_GET['action'] == 'links' && isset($_GET['cat']))
return;
This should do the trick!
Of course with thanks to IchBin of TinyPortal.net