From b8ceafbfb9d18b4edcb527114bdab98202e2178d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stephan=20K=C3=B6hler?= Date: Mon, 23 Jan 2006 14:58:43 +0000 Subject: [PATCH] Merge von 820 aus unstable: Bugfix 160 Fix zu Bug 160. Fehler war eine Zeichenbeschraenkung der Optionenbeschreibung auf 50 Zeichen. --- SL/Form.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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|; -- 2.20.1