Skip to content

Commit

Permalink
Fix error in C4::Context::DESTROY()
Browse files Browse the repository at this point in the history
  • Loading branch information
ctfliblime committed Jul 2, 2011
1 parent 012e6bd commit eb6cd43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C4/Context.pm
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ sub new {

sub DESTROY {
my $self = shift;
for (values ($self->{Zconn} // {})) {
for (values %{$self->{Zconn}}) {
$_->destroy();
}
}
Expand Down

0 comments on commit eb6cd43

Please sign in to comment.