johnnyrd
Forum Replies Created
-
Thanks, it would be awesome if you could add the option for multiple variables to a photo through the admin interface. This could be achievable through writing to the gallery xml file and dividing each variable with a
tag as I have done manually.Hi, sorry the above didnt show because the browser rendered the ascii tags to html tags automatically, please look at the following pastebin for my post:
For example in the admin interface I type in the caption:
Title
2008
Canvas
100 x 100
$700
In Stock.In the xml the plugin writes:
<image>
<filename>GJ8Z6025.jpg</filename>
<caption><![CDATA[Title
2008
Canvas
100 x 100
$700
In Stock.]]></caption>
</image>The above ascii charecters are outputted in the flash file as Title
2008
Canvas
100 x 100
$700
In Stock.If I edit the xml file manually to the below, everything works fine.
<image>
<filename>GJ8Z6025.jpg</filename>
<caption><![CDATA[Title
2008
Canvas
100 x 100
$700
In Stock.]]></caption>
</image>So I need it edit the plugin to stop writing html tags as ascii characters…