diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 587bb9bd0..a1783f691 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -2,6 +2,8 @@ - fixed #10450: A different errormessage is given if the username does exist and does not exist. (Arjan Widlak / United Knowledge) - fixed: Reverted bugfix for 10409 and changed the hover help to reflect the correct way to build list-type form controls in the MetaData. + - Fixed a problem with graphing created by the newer versions of Image + Magick. - fixed: Template parser cannot be set - fixed #10361: Shortcuts duplicate extra header tags - fixed #10356: SQL report is cached too long diff --git a/lib/WebGUI/Image.pm b/lib/WebGUI/Image.pm index 390c274f7..3f3a6fb10 100644 --- a/lib/WebGUI/Image.pm +++ b/lib/WebGUI/Image.pm @@ -177,7 +177,7 @@ sub new { size => $width.'x'.$height, ); - $img->Read(filename => 'xc:white'); + $img->ReadImage('xc:white'); bless {_image => $img, _session => $session, _properties => { width => $width,