From: Jean-Philippe Lang Date: Sun, 15 Jun 2008 09:43:53 +0000 (+0000) Subject: Close statement handler in Redmine.pm (#1433). X-Git-Tag: 0.8.0-RC1~449 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=622798a5edfb47250d782a86d87b4e5c1101a814;p=redmine.git Close statement handler in Redmine.pm (#1433). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1539 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/extra/svn/Redmine.pm b/extra/svn/Redmine.pm index e046b949a..09a85fb09 100644 --- a/extra/svn/Redmine.pm +++ b/extra/svn/Redmine.pm @@ -235,6 +235,7 @@ sub is_public_project { $sth->execute($project_id); my $ret = $sth->fetchrow_array ? 1 : 0; + $sth->finish(); $dbh->disconnect(); $ret;