summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Bug.pm')
-rwxr-xr-xBugzilla/Bug.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 6165fd2bb..302ac38b7 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -1148,9 +1148,11 @@ sub ValidateBugID {
my $dbh = Bugzilla->dbh;
my $user = Bugzilla->user;
- # Get rid of white-space around the ID.
+ # Get rid of leading '#' (number) mark, if present.
+ $id =~ s/^\s*#//;
+ # Remove whitespace
$id = trim($id);
-
+
# If the ID isn't a number, it might be an alias, so try to convert it.
my $alias = $id;
if (!detaint_natural($id)) {