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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
f30e9271
Commit
f30e9271
authored
Jun 01, 2001
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 57848, perl warnings in several files.
Patch by Nick Hibma <n_hibma@qubesoft.com> r= justdave@syndicomm.com
parent
bc521eff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
colchange.cgi
colchange.cgi
+4
-0
importxml.pl
importxml.pl
+1
-1
move.pl
move.pl
+1
-1
No files found.
colchange.cgi
View file @
f30e9271
...
...
@@ -23,6 +23,10 @@
use
diagnostics
;
use
strict
;
sub
sillyness
{
# shut up "used only once" warnings
my
$zz
=
@::legal_keywords
;
}
require
"CGI.pl"
;
print
"Content-type: text/html\n"
;
...
...
importxml.pl
View file @
f30e9271
...
...
@@ -49,7 +49,7 @@ use strict;
my
$path
=
$0
;
$path
=~
s
#(.*)/[^/]+#$1#;
chdir
$path
;
use
lib
(
$path
)
;
use
lib
"$path"
;
use
XML::
Parser
;
use
Data::
Dumper
;
...
...
move.pl
View file @
f30e9271
...
...
@@ -109,7 +109,7 @@ foreach my $id (split(/:/, $::FORM{'buglist'})) {
SendSQL
(
"INSERT INTO bugs_activity "
.
"(bug_id,who,bug_when,fieldid,oldvalue,newvalue) VALUES "
.
"($id,$exporterid,now(),$fieldid,'$cur_status','RESOLVED')"
);
my
$fieldid
=
GetFieldID
(
"resolution"
);
$fieldid
=
GetFieldID
(
"resolution"
);
my
$cur_res
=
$bug
->
resolution
;
SendSQL
(
"INSERT INTO bugs_activity "
.
"(bug_id,who,bug_when,fieldid,oldvalue,newvalue) VALUES "
.
...
...
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