You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can't quite find out where but when the image get's rendered the 'image' string used to place the variables gets over written by the default image string (< img src="{:path}" / >) and this is what gets output.
Changing the string name to dummyimage or something else similar fixes the issue.
The text was updated successfully, but these errors were encountered:
Hi - so if you use $this->dummy->image(50,50) instead of the output string being '< img src="data:{:type};base64,{:data}"{:options} / >' it is '< img src="{:path}"{:options} / >'. In Dummy.php after it generates the image it calls _render, but the string in Dummy.php (line 25) must clash with the default image string as when it renders it uses the normal image string from the html helper. If I rename 'image' on line 25 and 180 to something else it works fine. Just wasn't sure if this was just me or not, as I have other plugins and so on.
Can't quite find out where but when the image get's rendered the 'image' string used to place the variables gets over written by the default image string (< img src="{:path}" / >) and this is what gets output.
Changing the string name to dummyimage or something else similar fixes the issue.
The text was updated successfully, but these errors were encountered: