Files
friendshiptours.org/site/en/admin/news.delete.php
2015-11-12 19:58:50 -06:00

20 lines
691 B
PHP

<h2>Administrate FTI: News</h2>
<p>
Please decide if you really want to delete this item below.
</p>
<div class='admin_summary_box'>
<h3>Delete News Item</h3>
<p>
Do you really want to delete the news item
"<?php echo $this->data['newsitem']->title ?>"?
</p>
<form action="news.php" method="post" id='news_form' accept-charset="utf-8">
<input type="hidden" name="do" value="reallydelete" id="do"/>
<input type="hidden" name="id" value="<?php echo $this->data['newsitem']['id'] ?>" id="id"/>
<p>
<input type="submit" value="Delete news item">
<a href='news.php' title="Don't delete news item">No, don't delete news item</a>
</p>
</form>
</div>