summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-04-02 11:00:03 +0200
committerYorhel <git@yorhel.nl>2020-04-02 11:00:05 +0200
commitaedc25ae190037aa241d11b3ea17c8a3e0eed7ca (patch)
treed00141fddbcd8769a3f38ceb869b095bd71adfad /lib
parent8251405d805fd096839194df9e822092e5463140 (diff)
Increase max release title length to 300
https://vndb.org/t2520.377
Diffstat (limited to 'lib')
-rw-r--r--lib/VNWeb/Releases/Edit.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNWeb/Releases/Edit.pm b/lib/VNWeb/Releases/Edit.pm
index 7471972e..a2326207 100644
--- a/lib/VNWeb/Releases/Edit.pm
+++ b/lib/VNWeb/Releases/Edit.pm
@@ -5,7 +5,7 @@ use VNWeb::Prelude;
my $FORM = {
id => { required => 0, id => 1 },
- title => { maxlength => 250 },
+ title => { maxlength => 300 },
original => { required => 0, default => '', maxlength => 250 },
rtype => { default => 'complete', enum => \%RELEASE_TYPE },
patch => { anybool => 1 },