Does not use SSL for avatars
-
The avatars (user icons) are always loaded via https://pbs.twimg.com/, this breaking the page’s https communication with mixed content.
Solution:
In./controller/twitter_widget.class.php
replace the first with the second line:
//echo ‘src=”‘.$t[‘image’].'” alt=”Tweet Avatar” class=”‘;
echo ‘src=”‘ . str_replace(‘https://’, ‘//’, $t[‘image’]) . ‘” alt=”Tweet Avatar” class=”‘;Didn’t find the part where
$tweets
were filled, so it is probably better to not prepend https:// in the first place.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Does not use SSL for avatars’ is closed to new replies.