From: Stephan Köhler Date: Mon, 23 Jan 2006 14:58:43 +0000 (+0000) Subject: Merge von 820 aus unstable: Bugfix 160 X-Git-Tag: release-2.2.0~14 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=b8ceafbfb9d18b4edcb527114bdab98202e2178d;p=kivitendo-erp.git Merge von 820 aus unstable: Bugfix 160 Fix zu Bug 160. Fehler war eine Zeichenbeschraenkung der Optionenbeschreibung auf 50 Zeichen. --- diff --git a/SL/Form.pm b/SL/Form.pm index c16353284..c70e35ab1 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -1631,7 +1631,7 @@ sub create_links { # now get the account numbers $query = - qq|SELECT c.accno, SUBSTRING(c.description,1,50) as description, c.link, c.taxkey_id + qq|SELECT c.accno, c.description, c.link, c.taxkey_id FROM chart c WHERE c.link LIKE '%$module%' ORDER BY c.accno|;