﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
14360	Smilies on SSL	tech163	tech163	"When I have smiles in comments, they are not served in SSL, even if I enabled FORCE_SSL_ADMIN in wp-config.

I think this can be fixed by changing:

{{{
	$siteurl = get_option( 'siteurl' );
}}}

to


{{{
	$siteurl = get_option( 'siteurl' );

	if($_SERVER['HTTPS'] == 'on') {
		if(substr($siteurl, 0, 5) == 'http:') {
			$siturl = 'https:' . substr($siteurl, 5);
		}
	}

}}}

on line 1427 of /wp-includes/formatting.php.

Can someone else verify that this works?
"	defect (bug)	closed	normal	3.1	HTTP	3.0	minor	fixed		
