Bug 8379 don't close dbh
authorPaul Poulain <paul.poulain@biblibre.com>
Mon, 24 Sep 2012 20:48:30 +0000 (22:48 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 5 Oct 2012 09:46:00 +0000 (11:46 +0200)
don't close the DBH handler, because under plack this cause a lot of problem
and in CGI mode, closing the dbh handler is useless

Signed-off-by: Dobrica Pavlinusic <dpavlin@rot13.org>
admin/marc_subfields_structure.pl

index 365a861..615fbcf 100755 (executable)
@@ -46,7 +46,6 @@ sub string_search {
         $u++;
     }
     $sth->finish;
-    $dbh->disconnect;
     return ( $cnt, \@results );
 }