Closed GoogleCodeExporter closed 9 years ago
Try to replace line 559 from
if (stristr ($src, 'http://') !== false) {
to
if ((stristr ($src, 'http://') !== false) || (stristr ($src, 'https://')) !== false) {
This one seems like fix your problem.
Original comment by djevrek
on 3 Feb 2011 at 8:27
Thanks :) i'll update if there's a future error
Original comment by hnaz...@gmail.com
on 4 Feb 2011 at 3:24
miss a closing statement, fixed to
if ((stristr ($src, 'http://') !== false) || (stristr ($src, 'https://') !==
false) ) {
but the code works :D
Thanks
Dian
Original comment by hnaz...@gmail.com
on 4 Feb 2011 at 3:46
This has now been commited, thanks for the report! :)
Original comment by BinaryMoon
on 6 Feb 2011 at 10:55
Original comment by BinaryMoon
on 6 Feb 2011 at 10:56
[deleted comment]
Still Not getting images from https connections.....there is no line 559 in the
latest version that says "if (stristr ($src, 'http://' !== false) {"
Original comment by tune2sud...@gmail.com
on 5 Dec 2012 at 7:43
how did you fix it. I have the smae problem
Original comment by talentai...@gmail.com
on 14 Feb 2013 at 4:58
Original issue reported on code.google.com by
hnaz...@gmail.com
on 3 Feb 2011 at 4:16