From: Moritz Bunkus Date: Thu, 13 Jan 2011 14:12:18 +0000 (+0100) Subject: "current_date" wird von aktuellen DBI-Versionen nicht mehr als BInd-Variable unterstützt X-Git-Tag: release-2.6.2beta2~25 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=6fd4ac204ed1ad07ad149106a1e62a77cad22c5b;p=kivitendo-erp.git "current_date" wird von aktuellen DBI-Versionen nicht mehr als BInd-Variable unterstützt --- diff --git a/SL/IC.pm b/SL/IC.pm index f3f887dca..ac3d6f281 100644 --- a/SL/IC.pm +++ b/SL/IC.pm @@ -1535,7 +1535,7 @@ sub retrieve_accounts { } if ($transdate eq "") { - $transdate = "current_date"; + $transdate = DateTime->today_local->to_lxoffice; } else { $transdate = $dbh->quote($transdate); }