Bug 560862: defined(%hash) is deprecated in Perl 5.12, so stop using it.

r=LpSolit, a=LpSolit


git-svn-id: svn://10.0.0.236/branches/BUGZILLA-3_6-BRANCH@260218 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2010-04-22 18:22:50 +00:00
parent 524a361c72
commit 517b4810d6
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
7089
7090

View File

@ -276,10 +276,10 @@ EOT
if (defined $$glob) {
$localconfig{$var} = $$glob;
}
elsif (defined @$glob) {
elsif (@$glob) {
$localconfig{$var} = \@$glob;
}
elsif (defined %$glob) {
elsif (%$glob) {
$localconfig{$var} = \%$glob;
}
}