- Code: Select all
<img alt="Mapa de uso e ocupação do solo" src="images/stories/2011/08/parang_tcurbes_1.jpg" height="438" width="707" />
And the caption is broken:
In file plugins/system/niceslideshowlite.php at line 174 there is a such a code, which creates HTML entities like ˜:
- Code: Select all
$a[$i] = htmlentities( $a[$i], ENT_NOQUOTES );
So it creates additional semicolons, which are used to explode the caption in line 178:
- Code: Select all
$a[$i] = explode( ';', $a[$i] ); // Hint, images and metadata
And the situation looks like this:
I'm not sure why you use the htmlentities there, but if it's needed, then you should move it after explode function. I had to just comment the line 174 to preserve my caption text.
So now it looks as expected:
Thanks for a great plugin!


