SSL Conditions Broken in Latest Update
-
Could not find an issue tracker on SVN or GitHub, so hopefully this is where you want bug reports.
The latest update includes (3) references to SSL logic in
timeline-express/classes/class.timeline-express.php1 of them is correct, the other two have the conditions reversed. The correct logic is…
$http = ( is_ssl() ) ? ‘https:’ : ‘http:’;Note that the other two instances are written as
$http = ( is_ssl() ) ? ‘http:’ : ‘https:’;Which causes mixed-content errors on SSL sites.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘SSL Conditions Broken in Latest Update’ is closed to new replies.