FeedOnFeeds/item.php

28 lines
506 B
PHP
Raw Normal View History

2009-08-03 16:42:04 +04:00
<?php
/*
* This file is part of FEED ON FEEDS - http://feedonfeeds.com/
*
* item.php - renders a single item (useful for Ajax)
*
*
* Copyright (C) 2004-2007 Stephen Minutillo
* steve@minutillo.com - http://minutillo.com/steve/
*
* Distributed under the GPL - see LICENSE
*
*/
include_once("fof-main.php");
include_once("fof-render.php");
fof_set_content_type();
2014-12-09 16:07:00 +03:00
if (empty($_GET['id']))
{
die("No post ID");
}
2009-08-03 16:42:04 +04:00
$row = fof_get_item(fof_current_user(), $_GET['id']);
fof_render_item($row);