diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-01-09 15:51:35 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-01-09 15:51:35 +0000 |
commit | ef9143907f1ea6600a6c66065f0e18ac42f3535b (patch) | |
tree | 37382b6d5b8df60670cd5efecbcfd388d68d06e8 /templates/tag2tagdelete.tpl.php | |
parent | b1c3fbad478b43080e7506243d3fb77465a599d4 (diff) | |
download | semanticscuttle-ef9143907f1ea6600a6c66065f0e18ac42f3535b.tar.gz semanticscuttle-ef9143907f1ea6600a6c66065f0e18ac42f3535b.tar.bz2 |
Structured tags '>' for each user
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@3 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/tag2tagdelete.tpl.php')
-rw-r--r-- | templates/tag2tagdelete.tpl.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/tag2tagdelete.tpl.php b/templates/tag2tagdelete.tpl.php new file mode 100644 index 0000000..9a276d1 --- /dev/null +++ b/templates/tag2tagdelete.tpl.php @@ -0,0 +1,22 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form action="<?= $formaction ?>" method="post"> +<input type="hidden" name="tag1" value="<?php echo $tag1 ?>" /> +<input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /> +<p><?php echo T_('Are you sure?'); ?></p> +<p> + <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('No'); ?>" /> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> |