Announcement

Collapse
No announcement yet.

V8 Advanced guide buglet.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    V8 Advanced guide buglet.

    The patch "Automatically Rescale Your Images to a Certain Size" has a bug where it's creating floating point values for the image width (e.g. width="123.456").

    The fix is to change the line

    $t_height = $height * ($t_width / $width);

    to

    $t_height = round($height * ($t_width / $width));
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    #2
    Hi Norman,

    Thanks for this. I am sure Chris will see it and make the necessary changes.

    Kind regards,
    Bruce King
    SellerDeck

    Comment


      #3
      Yep - this will be corrected in the next release of the Advanced User Guide

      Comment

      Working...
      X