Hello,
I was working with Uddeim for a client today and noticed ssl images are broken, it seems that an extra http:// is prepended to the actual url. This looks to be hard coded in a preg_replace in /components/com_uddeim/bbparser.php @ line 112
Code:
$string = preg_replace( "/\[img\](.*?)\[\/img\]/si", "[img]http://$1[/img]", $string );
Changing that to:
$string = preg_replace( "/\[img\](.*?)\[\/img\]/si", "[img]$1[/img]", $string );
Seems to fix the problem. Full sample code can be see at:
gist.github.com/cybersholt/f8045e64d5fe857c40292fa9a4e4775e