if (!defined("IN_FUSION")) { header("Location:../../index.php"); exit; } opentable("Najnowsze w Galerii"); $ticker_speed = "120"; $ticker_width = "100%"; $tickerquery = dbquery("SELECT tn.*, tu.user_id,user_name ,COUNT(comment_item_id) AS photo_comments FROM ".$db_prefix."photos tn LEFT JOIN ".$db_prefix."users tu ON tn.photo_title=tu.user_id LEFT JOIN ".$db_prefix."comments ON photo_id=comment_item_id AND comment_type='P' GROUP BY photo_id ORDER BY photo_date DESC LIMIT 0,5"); $ticker_content = ""; while($data = dbarray($tickerquery)) { $ticker_content .= "
".$photo_info."
', CAPTION, '
".strtoupper($data['photo_url'])."
', ".$ovside.");\" onMouseOut=\"return nd('');\" >
"; if($ticker_author+$ticker_date+$ticker_comments+$ticker_reads != "0" ) { $ticker_content .= "["; if($ticker_author == "1") { $ticker_content .= $locale['040'].$data[user_name]; if($ticker_date+$ticker_comments+$ticker_reads != "0"){ $ticker_content .= " | "; } } if($ticker_date == "1") { $ticker_content .= showdate("shortdate", $data['photo_date']); if($ticker_comments+$ticker_reads != "0"){ $ticker_content .= " | "; } } if($ticker_comments == "1") { $ticker_content .= $data['photo_comments'] .$locale['043']; if($ticker_reads != "0"){ $ticker_content .= " | "; } } if($ticker_reads == "1") { $ticker_content .= $locale['413'] .$data['photo_views'] .$locale['412']; } $ticker_content .= "]"; } $ticker_content .= " "; } $ticker_content .= "
"; echo $ticker_content;