PDA

View Full Version : Trouble with <LANG_CAPTURE_DATE>


netwalker
04-10-2005, 03:54 PM
I made the update to 1.4, and I changed the tags to used them with the language. So I added the &lt;LANG_CAPTURE_DATE> tag, but it breaks my template.

When I added to image_template.html, everything after the tag was not displayed, even other exif tags. I'm using a modified version of the simplyblue template.

raminia
04-10-2005, 08:59 PM
ooops! not again!
this was fixed in another area but this one is missed! I'll ask to update this in the downloading section but your just replace
about line 337 of index.php
$tpl = str_replace("&lt;LANG_CAPTURE_DATE>",$capture_date,$tpl);
with
$tpl = ereg_replace("&lt;LANG_CAPTURE_DATE>",$capture_date,$tpl);
and that's it!

netwalker
04-11-2005, 01:38 AM
Perfect!!! :D

Thanks