remove unused delete.phtml

This commit is contained in:
wlx 2011-10-26 09:09:48 +00:00
parent 47089e9a57
commit 4a2a4d69b4
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
<?php if ($this->md) :?>
<p>Are you sure that you want to delete this metadata:
<h2><?php echo $this->escape($this->md->title); ?></h2>
<?php echo $this->escape($this->md->description); ?>
</p>
<form action="<?php echo $this->url(array('action'=>'delete')); ?>" method="post">
<div>
<input type="hidden" name="id" value="<?php echo $this->md->id; ?>" />
<input type="submit" name="del" value="Yes" />
<input type="submit" name="del" value="No" />
</div>
</form>
<?php else: ?>
<p>Cannot find the metadata.</p>
<?php endif;?>