diff options
| author | 2011-06-04 00:38:07 -0400 | |
|---|---|---|
| committer | 2011-06-04 00:38:07 -0400 | |
| commit | b628e63e015bc3b2eadc712feaa6c4d05cf75bbd (patch) | |
| tree | ebdcec5c8133a3b6f86d06dc3f6fb3de46609f04 /data/templates/tagedit.tpl.php | |
| parent | 84e603aa91a303a1419962ff3ff6086710a7b1a9 (diff) | |
| parent | 4c8a53c5bc632302aaf8978e711eb53a03166db5 (diff) | |
| download | scuttle-b628e63e015bc3b2eadc712feaa6c4d05cf75bbd.tar.gz scuttle-b628e63e015bc3b2eadc712feaa6c4d05cf75bbd.zip | |
Merge branch 'master' into privatekey2
Conflicts:
data/templates/default/bookmarks.tpl.php
Diffstat (limited to 'data/templates/tagedit.tpl.php')
| -rw-r--r-- | data/templates/tagedit.tpl.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/data/templates/tagedit.tpl.php b/data/templates/tagedit.tpl.php deleted file mode 100644 index 5edfbc7..0000000 --- a/data/templates/tagedit.tpl.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php -$this->includeTemplate($GLOBALS['top_include']); -?> -<script type="text/javascript"> -window.onload = function() { - document.getElementById("description").focus(); -} -</script> -<form action="<?php echo $formaction; ?>" method="post"> -<table> -<tr> - <th align="left"><?php echo T_('Description'); ?></th> - <td><textarea name="description" cols="75" rows="10"><?php echo $description['tDescription']; ?></textarea></td> -</tr> -<tr> - <td></td> - <td> - <input type="submit" name="confirm" value="<?php echo T_('Update'); ?>" /> - <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> - </td> - <td></td> -</tr> -</table> -</p> - -<?php if (isset($referrer)): ?> -<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> -<?php endif; ?> -<div><input type="hidden" name="tag" value="<?php echo $tag; ?>" /></div> -</form> - -<?php -$this->includeTemplate($GLOBALS['bottom_include']); -?> |