12 Nov
2003
12 Nov
'03
8 p.m.
On Wed, 12 Nov 2003 20:43:51 +0100 Max M <maxm@mxm.dk> wrote:
I have a site with lots of structured text.
There are many <img src='/some/image'> tags in the texts. But after upgrading from Zope 2.51 to Zope 2.61, I get broken images all over the place.
Example::
<img src='images/kreativ.jpg' align='left'>
This tag is turned into::
<img src="%3Ccode">images/kreativ.jpg align='left'>
While::
<img src="images/kreativ.jpg" align="left">
I think this is because single quotes are used to designate inline preformatted code sections. This causes unintended markup to occur inside image tags containing single quotes. Maybe you can just mass replace the single quotes with double quotes. -Casey