Are you sure ?
I see this `echo "nn";` in zp-core/image_album_statistics.php
`/**
* Prints image statistic according to $option as an unordered HTML list
* A css class is attached by default named accordingly'$option'
*
* @param string $number the number of albums to get
* @param string $option "popular" for the most popular images,
* "latest" for the latest uploaded,
* "latest" for the latest uploaded,
* "mostrated" for the most voted,
* "toprated" for the best voted
* @param string $album title of an specific album
* @return string
*/
function printImageStatistic($number, $option, $album='', $showtitle=false, $showdate=false, $showdesc=false, $desclength=40) {
$images = getImageStatistic($number, $option, $album);
echo "n<div id=\"$option\">n";
echo "[list]";
foreach ($images as $image) {
echo "[*]<a href=\"" . $image->getImageLink() . "\" title=\"" . htmlspecialchars($image->getTitle(), ENT_QUOTES) . "\">n";
echo "<img src=\"" . $image->getThumb() . "\" alt=\"" . htmlspecialchars($image->getTitle(),ENT_QUOTES) . "\" /></a>n";
if($showtitle) {
echo "<div><a href=\"".pathurlencode($image->name)."\" title=\"" . $image->getTitle() . "\">n";
echo $image->getTitle()."</a>n";
}
echo "";
if($showdate) {
echo "". zpFormattedDate(getOption('date_format'),strtotime($image->getDateTime()))."
";
}
if($showdesc) {
echo "".my_truncate_string($image->getDesc(), $desclength)."
";
}
}
echo "";
echo "[/list]</div>n";
}`