summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-10-23 18:39:52 +0200
committerDavid Lawrence <dkl@mozilla.com>2014-10-23 18:39:52 +0200
commit09ff8eeb2d7a5e92d6a29b99ecaf0984a89db35b (patch)
treea7108990922e3dc49cc1be103a225cc4c3e55648 /Bugzilla/Bug.pm
parent0e1bc2617acbb15116fbf55646895418559d073e (diff)
downloadbugzilla-09ff8eeb2d7a5e92d6a29b99ecaf0984a89db35b.tar.gz
bugzilla-09ff8eeb2d7a5e92d6a29b99ecaf0984a89db35b.tar.xz
Bug 1062940: Please increase bmo's alias length to match bugzilla 5.0 (40 chars instead of 20)
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm2
1 files changed, 1 insertions, 1 deletions
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.