summaryrefslogtreecommitdiff
path: root/src/templates/form_fields.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-11-12 20:50:36 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-11-12 20:50:36 +0000
commitb8ee7f12aba7a81fa0ffbc5cae68e576a2a2372b (patch)
tree81d717716d1b4c68fc9e112a80056bc6b0596905 /src/templates/form_fields.php
parentcb303f1d018af9fe10f05b271d9d792ab8720a4d (diff)
Increase max length of tag
Diffstat (limited to 'src/templates/form_fields.php')
-rw-r--r--src/templates/form_fields.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templates/form_fields.php b/src/templates/form_fields.php
index 224dbf4..5024c02 100644
--- a/src/templates/form_fields.php
+++ b/src/templates/form_fields.php
@@ -6,7 +6,7 @@
<?php if ($errors->has('title')) { ?>
<p><?= htmlentities(implode(', ', $errors->get('title'))); ?></p>
<?php } ?>
-<label>Tag<input type="text" name="tag" maxlength="8" value="<?= htmlspecialchars($old->get('tag', $bookmark->tag)); ?>"></label>
+<label>Tag<input type="text" name="tag" maxlength="16" value="<?= htmlspecialchars($old->get('tag', $bookmark->tag)); ?>"></label>
<?php if ($errors->has('tag')) { ?>
<p><?= htmlentities(implode(', ', $errors->get('tag'))); ?></p>
<?php } ?>