X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/0c1176f0133f31776a50b11f38e752571e855b40..7b78a2158034b089155059fde7e1a74a34745323:/doc/bugs/resized_img_with_only_width_or_height_breaks_ie.mdwn diff --git a/doc/bugs/resized_img_with_only_width_or_height_breaks_ie.mdwn b/doc/bugs/resized_img_with_only_width_or_height_breaks_ie.mdwn index c8196b412..a5a1c6768 100644 --- a/doc/bugs/resized_img_with_only_width_or_height_breaks_ie.mdwn +++ b/doc/bugs/resized_img_with_only_width_or_height_breaks_ie.mdwn @@ -4,22 +4,6 @@ In those cases img plugin do generate HTML with the missing attribute as "empty" If we instead always get the resulting the width and height from the resized image, and uses those values in the img attrs, we make IE happy (and all other renders as well). -Inline patch: +A patch (tested and deployed) is sitting waiting in my git repository. -diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm -index b98e843..398e9bc 100644 ---- a/IkiWiki/Plugin/img.pm -+++ b/IkiWiki/Plugin/img.pm -@@ -132,9 +132,9 @@ sub preprocess (@) { - $imglink = $file; - } - } -- -- $dwidth = $im->Get("width") unless defined $dwidth; -- $dheight = $im->Get("height") unless defined $dheight; -+ # get true image width and height from resized image attributes -+ $dwidth = $im->Get("width"); -+ $dheight = $im->Get("height"); - } - } - else { +> I've applied your patch. Thanks! [[done]] --[[Joey]]