﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
19899,Redundant logic in filter_SSL() function,deltafactory,duck_,"I'm not sure if there's a reason it's written this way, but the logic in this line seems redundant.

http://core.trac.wordpress.org/browser/trunk/wp-includes/ms-functions.php#L1947

{{{
if ( 'http' === $arrURL['scheme'] && 'https' !== $arrURL['scheme'] )
}}}

In the interest of simplification, shouldn't this line be:
{{{
if ( 'http' === $arrURL['scheme'] )
}}}
",enhancement,closed,normal,3.4,Multisite,3.3.1,trivial,fixed,has-patch commit,
