From: Moritz Bunkus Date: Fri, 25 Feb 2011 14:56:31 +0000 (+0100) Subject: Sowohl Standard-DB-Handle als auch Auth-DB-Handle am Ende des Requests schließen X-Git-Tag: release-2.6.3~70 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=6b9cf44db2aaa1ec4bfa407b44427e4d5178abbb;p=kivitendo-erp.git Sowohl Standard-DB-Handle als auch Auth-DB-Handle am Ende des Requests schließen --- diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 26312f6f2..406510e2c 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -232,7 +232,8 @@ sub handle_request { $::locale = undef; $::form = undef; $::myconfig = (); - Form::disconnect_standard_dbh unless $self->_interface_is_fcgi; + Form::disconnect_standard_dbh; + $::auth->dbdisconnect; $::lxdebug->end_request; $::lxdebug->leave_sub;