diff options
author | Thomas Lange <code@nerdmind.de> | 2017-10-24 20:30:31 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-10-24 20:36:35 +0200 |
commit | 88c4effebd6efa93f41cc3d11d2c3a3fa3e6649f (patch) | |
tree | cb4d0ea671990b4e4f8bb9cd4e6103ff26e7449a /template/admin/html/post/form.php | |
parent | 7cdbf9efcc542701b489e8814628bf6a3b48074e (diff) | |
download | blog-88c4effebd6efa93f41cc3d11d2c3a3fa3e6649f.tar.gz blog-88c4effebd6efa93f41cc3d11d2c3a3fa3e6649f.tar.xz blog-88c4effebd6efa93f41cc3d11d2c3a3fa3e6649f.zip |
Database update: The maximum amount of characters for the argument field has been increased from 100 to 250.v2.4.1
Database update to version 2.4.1 (no existing data will be lost or changed):
ALTER TABLE `page` MODIFY `argv` VARCHAR(250);
ALTER TABLE `post` MODIFY `argv` VARCHAR(250);
ALTER TABLE `user` MODIFY `argv` VARCHAR(250);
Diffstat (limited to 'template/admin/html/post/form.php')
-rw-r--r-- | template/admin/html/post/form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/admin/html/post/form.php b/template/admin/html/post/form.php index 1123ff3..a1fa601 100644 --- a/template/admin/html/post/form.php +++ b/template/admin/html/post/form.php @@ -78,7 +78,7 @@ </ul> </div> <div class="flex flex-padding background flex-arguments"> - <input id="form_argv" name="argv" maxlength="100" placeholder="[ARGUMENT_FOO=one|ARGUMENT_BAR=two …]" value="<?=escapeHTML($FORM['DATA']['ARGV'])?>" /> + <input id="form_argv" name="argv" maxlength="250" placeholder="[ARGUMENT_ONE=foo|ARGUMENT_TWO=bar …]" value="<?=escapeHTML($FORM['DATA']['ARGV'])?>" /> </div> <?php else: ?> <div class="flex flex-padding background flex-direction-column"> |