From 75228fb8b2b9ae05ebdab496efd554c54e99441a Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 20 Feb 2014 19:39:10 +0100 Subject: [PATCH] Bug 11803: Consistent use of $dbh in _koha_modify_item MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is just some code cleanup, no behavior change expected. Also replacing errstr with err in testing the results. (See DBI.) Test plan: Modify an item and save it. Followed test plan. No problems found. Signed-off-by: Marc VĂ©ron Signed-off-by: Jonathan Druart --- C4/Items.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Items.pm b/C4/Items.pm index 5680db7..12dce85 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -2316,10 +2316,10 @@ sub _koha_modify_item { $query =~ s/,$//; $query .= " WHERE itemnumber=?"; push @bind, $item->{'itemnumber'}; - my $sth = C4::Context->dbh->prepare($query); + my $sth = $dbh->prepare($query); $sth->execute(@bind); - if ( C4::Context->dbh->errstr ) { - $error.="ERROR in _koha_modify_item $query".$dbh->errstr; + if ( $sth->err ) { + $error.="ERROR in _koha_modify_item $query: ".$sth->errstr; warn $error; } return ($item->{'itemnumber'},$error); -- 1.7.10.4