summaryrefslogtreecommitdiffstats
path: root/move.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-06-01 11:07:27 +0200
committerjustdave%syndicomm.com <>2001-06-01 11:07:27 +0200
commitf30e92711a48569225bd1810b11c7ea91bae14d1 (patch)
tree2bbbcb09d5bdb843bc414c4e743956016c9acf02 /move.pl
parentbc521effbd39f4e88e8de50dac650acd8a46705f (diff)
downloadbugzilla-f30e92711a48569225bd1810b11c7ea91bae14d1.tar.gz
bugzilla-f30e92711a48569225bd1810b11c7ea91bae14d1.tar.xz
Fix for bug 57848, perl warnings in several files.
Patch by Nick Hibma <n_hibma@qubesoft.com> r= justdave@syndicomm.com
Diffstat (limited to 'move.pl')
-rwxr-xr-xmove.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/move.pl b/move.pl
index 921e8e74e..42eb96351 100755
--- a/move.pl
+++ b/move.pl
@@ -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 " .