Your lucky i'm bored today. So I can quickly look at your bug reports.

. Isn't that fast? there's only few minutes bet. beta2 and beta2a? hahaha
haha, well fast bug fixes, bring you people and your bridge is much better than the older one, well at least it's well organised, BTW there is some lines in your code that are useless like in administrator/components/com_smf/functions.smf.php we can see
function isSMFModPublished() {
global $database, $mosConfig_absolute_path, $mosConfig_db;
include_once( $mosConfig_absolute_path . '/administrator/components/com_smf/config.smf.php' );
$database->setQuery("SELECT module FROM #__modules WHERE module = 'mod_smf_login' AND published = 1 LIMIT 1");
$row = $database->loadResult();
return $row;
if($row) {
return true;
}
return false;
}
as you can see you call return $row; on line 6 then on line 7-10 you made an if-clause but it's never reached, so better to remove it,
also i know it's for your debug (i think you already fixed that anyway
//debugging
//$count = 0;
//foreach($oldurl as $nonsefurl) {
// $temp .= $nonsefurl . "<br/>" . $newurl[$count++] . "<br><br>\n";
//}
and then you call
return $buffer . "" . $temp;
but in this case $temp isn't defined anyway so had to either
$temp="";
before it, or replace it with
return $buffer;
anyway i think this was fixed before, anyway i will try my best tonight to read your code and i will create one big topic or PM with the errors i'll find (not talking about BUGs but errors like those above)