From: Sven Schöling Date: Tue, 10 Mar 2009 14:15:52 +0000 (+0000) Subject: kaputtes quoting, berichtet in Bug 815. X-Git-Tag: release-2.6.0beta2~154 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=d367e9f250ce6bd59dc1c024a93298757f93db4e;p=kivitendo-erp.git kaputtes quoting, berichtet in Bug 815. --- diff --git a/SL/IR.pm b/SL/IR.pm index 31db0a77a..043e84620 100644 --- a/SL/IR.pm +++ b/SL/IR.pm @@ -523,7 +523,7 @@ sub post_invoice { do_query($form, $dbh, $query, conv_i($form->{storno_id})); $query = qq!UPDATE ap SET intnotes = ? || intnotes WHERE id = ?!; - do_query($form, $dbh, $query, 'Rechnung storniert am $form->{invdate} ', conv_i($form->{storno_id})); + do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{storno_id})); $query = qq|UPDATE ap SET paid = amount WHERE id = ?|; do_query($form, $dbh, $query, conv_i($form->{id}));