Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
function plogger_picture_comment_count() {
$row = $GLOBALS["current_picture"];
$comment_query = "SELECT COUNT(*) AS `num_comments` FROM `".TABLE_PREFIX."comments`
WHERE approved = 1 AND `parent_id`='".$row["id"]."'";
$comment_result = run_query($comment_query);
$num_comments = mysql_result($comment_result, 0, 'num_comments');
return $num_comments;
}
function plogger_picture_comment_count() {
$row = $GLOBALS["current_picture"];
$comment_query = "SELECT COUNT(`id`) AS `num_comments` FROM `".TABLE_PREFIX."comments`
WHERE approved = 1 AND `parent_id`='".$row["id"]."'";
$comment_result = run_query($comment_query);
$num_comments = mysql_result($comment_result, 0, 'num_comments');
return $num_comments;
}
$imgtag = '<img id="' . $img_id
. '" onmouseout="document.getElementById(\'overlay\').style.visibility = \'hidden\';"
onmouseover="display_overlay(\''.$img_id.'\', \''.plogger_picture_comment_count().'\')" class="photos"
src="'.plogger_get_picture_thumb().'" title="'.$capt.'" alt="'.$capt.'" />';
$imgtag = '<img id="' . $img_id
. '" src="'.plogger_get_picture_thumb().'" title="'.$capt.'" alt="'.$capt.'" />';
1 to 9 of 9