diff options
author | justdave%syndicomm.com <> | 2001-06-01 09:07:27 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-06-01 09:07:27 +0000 |
commit | f30e92711a48569225bd1810b11c7ea91bae14d1 (patch) | |
tree | 2bbbcb09d5bdb843bc414c4e743956016c9acf02 /importxml.pl | |
parent | Bugzilla was leaking information about bugs marked secure (using bug groups).... (diff) | |
download | bugzilla-f30e92711a48569225bd1810b11c7ea91bae14d1.tar.gz bugzilla-f30e92711a48569225bd1810b11c7ea91bae14d1.tar.bz2 bugzilla-f30e92711a48569225bd1810b11c7ea91bae14d1.zip |
Fix for bug 57848, perl warnings in several files.
Patch by Nick Hibma <n_hibma@qubesoft.com>
r= justdave@syndicomm.com
Diffstat (limited to 'importxml.pl')
-rwxr-xr-x | importxml.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl index b4b27b1e0..6f2ca2706 100755 --- a/importxml.pl +++ b/importxml.pl @@ -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; |