From 09ff8eeb2d7a5e92d6a29b99ecaf0984a89db35b Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 23 Oct 2014 16:39:52 +0000 Subject: Bug 1062940: Please increase bmo's alias length to match bugzilla 5.0 (40 chars instead of 20) --- Bugzilla/Bug.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Bug.pm') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 39a0f2596..90a9f96bb 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -1423,7 +1423,7 @@ sub _check_alias { return undef if (!Bugzilla->params->{'usebugaliases'} || !$alias); # Make sure the alias isn't too long. - if (length($alias) > 20) { + if (length($alias) > 40) { ThrowUserError("alias_too_long"); } # Make sure the alias isn't just a number. -- cgit v1.2.3-24-g4f1b