And it's nice to have 20,000 posts. Really says, "Yeah, I've been here since the beginning."
Unlike me, because this mod seems to have been around since the old Armada, and I certainly didn't look for mods back when I was playing that (too little).
Its more an issue of they will try their best. I doubt this is much an issue where doc is having a confrontation of weather or not to keep the post so much as it is a confrontation with the MySQL and PHP based conversion script that SMF hands out for IPB 1.3,
By the way doc, on a small side note because Joomla's bridge program tends to assign an arbitrary value to the forum link (ie index.php?option=com_smf&item=# that was assigned to the forum value). The admin panel for SMF is almost immediately invalidated if you had plans to call on any modules in the SMF forum, because the admin panel will check for a session and if that isn't present it will redirect you to yourdomain.com/smf_direcotry/admin/index.php
because obviously you can't keep Joomla and in the same directory any joomla modules will blow up in your face. so If you are going to call modules from Joomla, make sure to throw a get exception in the php like. If you throw this in the index.template.php it should fix the problem.
<?php
if ($_get['action']!='admin'){
#joomla module calls
}
?>
and then with a null else