Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
dc8e636e
Commit
dc8e636e
authored
Aug 31, 2000
by
cyeh%bluemartini.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix submitted for 42809: bug_email.pl doesn't allow for priority = 0
patch submitted by brad@xyu.dhs.org (Brad Sarsfield)
parent
6fc3ee11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
bug_email.pl
contrib/bug_email.pl
+3
-3
No files found.
contrib/bug_email.pl
View file @
dc8e636e
...
...
@@ -37,7 +37,7 @@
#
# You need to work with bug_email.pl the MIME::Parser installed.
#
# $Id: bug_email.pl,v 1.
6 2000/03/18 23:32:49 seth%cs.brandeis.edu
Exp $
# $Id: bug_email.pl,v 1.
7 2000/08/30 21:47:17 cyeh%bluemartini.com
Exp $
###############################################################
# 02/12/2000 (SML)
...
...
@@ -285,10 +285,10 @@ sub getEnumList( $ )
# Uses the global var. $Control{ 'priority' }
sub
CheckPriority
{
my
$prio
=
(
$Control
{
'priority'
}
||=
""
)
;
my
$prio
=
$Control
{
'priority'
}
;
my
@all_prios
=
getEnumList
(
"priority"
);
if
(
(
lsearch
(
\
@all_prios
,
$prio
)
==
-
1
)
||
$prio
eq
""
)
{
if
(
$prio
eq
""
||
(
lsearch
(
\
@all_prios
,
$prio
)
==
-
1
)
)
{
# OK, Prio was not defined - create Answer
my
$Text
=
"You sent wrong priority-setting, valid values are:"
.
join
(
"\n\t"
,
@all_prios
)
.
"\n\n"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment