A able containing several images all images but one are printed.
It seems that the only difference is that the path to the unprinted image contains an "umlaut".
To see the effect please have a look at the second row in the table found at

http://archiv.bgv-rhein-berg.de/node/2115 ( Die Mühlen an der Strunde ).

Regards
Schildi

Comments

jcnventura’s picture

Status: Active » Fixed

I have traced the culprit to my calls to the Drupal url() function which at some point calls urlencode. Since your img URLs were already urlencoded, applying it again only served to change M%C3%BChlen to M%25C3%25BChlen.

I have changed the following:
$newurl = url(trim($url,"/"), NULL, NULL, TRUE);
to
$newurl = url(trim(urldecode($url),"/"), NULL, NULL, TRUE);

This will be shortly in the dev release..

schildi’s picture

Tank you for your answering so quickly.
Your patch works.

Regards
Schildi

jcnventura’s picture

Status: Fixed » Closed (fixed)

22 hours is not so quickly, but it's a lot better than the response time for this module before I took over last week :)

Marking it closed then.