Skip to content
Snippets Groups Projects
Commit fd61d5f5 authored by Georg Ringer's avatar Georg Ringer Committed by Steffen Ritter
Browse files

[BUGFIX] Images from TER hosters break SSL

The logos should be fetched in the same context as the backend.
If https is used there, images are now loaded also via https

Change-Id: I8d210facfe89cbdae2ebd1d07da6cb8c51e5bbdb
Fixes: #34203
Releases: 4.8, 4.7, 4.6, 4.5
Reviewed-on: http://review.typo3.org/9437
Reviewed-by: Steffen Ritter
Tested-by: Steffen Ritter
parent c419d8d4
No related branches found
No related tags found
No related merge requests found
......@@ -1049,7 +1049,7 @@ class tx_em_Connection_ExtDirectServer {
'path' => $mirror['path'],
'sponsor' => $mirror['sponsorname'],
'link' => $mirror['sponsorlink'],
'logo' => $mirror['sponsorlogo'],
'logo' => str_replace('http:', '', $mirror['sponsorlogo']),
);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment