diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 09:43:53 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-15 09:43:53 +0000 |
commit | 622798a5edfb47250d782a86d87b4e5c1101a814 (patch) | |
tree | da08c24a79f0799746fc5875152fc9699b4da640 /extra/svn | |
parent | 2b3009d91df47805d53c7313512900199ed81eaf (diff) | |
download | redmine-622798a5edfb47250d782a86d87b4e5c1101a814.tar.gz redmine-622798a5edfb47250d782a86d87b4e5c1101a814.zip |
Close statement handler in Redmine.pm (#1433).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1539 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'extra/svn')
-rw-r--r-- | extra/svn/Redmine.pm | 1 |
1 files changed, 1 insertions, 0 deletions
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; |