. // It's licensed under the AFFERO GENERAL PUBLIC LICENSE unless stated otherwise. // You can get copies of the licenses here: // http://www.affero.org/oagpl.html // AFFERO GENERAL PUBLIC LICENSE is also included in the file called "COPYING". // ------------------------------------------------------------------------------------- include_once('Smarty.class.php'); if(!isset($main_smarty)){$main_smarty = new Smarty;} // If we're calling this page through another page like index.php, $main_smarty will already be set // If we're calling this page directly, set main_smarty include_once('config.php'); include_once(mnminclude.'html1.php'); include_once(mnminclude.'link.php'); include_once(mnminclude.'tags.php'); include_once(mnminclude.'search.php'); include_once(mnminclude.'smartyvariables.php'); echo "
Latest Comments
"; $res = "select comment_content,link_id from ".table_comments.",".table_links." WHERE comment_link_id = link_id ORDER BY comment_date DESC limit 10"; $list_comments = mysql_query($res) or die(mysql_error()); while($row = mysql_fetch_array($list_comments)){ $story_url = getmyurl("story", $row['link_id']); echo "".$row['comment_content']."
"; } echo "
"; ?>