Whitespace in Kontennamen filtern
authorG. Richardson <information@kivitendo-premium.de>
Sat, 26 Mar 2016 10:54:32 +0000 (11:54 +0100)
committerG. Richardson <information@kivitendo-premium.de>
Sat, 26 Mar 2016 10:54:32 +0000 (11:54 +0100)
Beim Speichern von Konten in der Kontenbeschreibung mehrere
aufeinanderfolgende Leerzeichen mit einem Leerzeichen ersetzen.
Siehe Ticket 148.

SL/AM.pm

index ef6e5fa..9ab6c80 100644 (file)
--- a/SL/AM.pm
+++ b/SL/AM.pm
@@ -149,6 +149,9 @@ sub save_account {
   # strip blanks from accno
   map { $form->{$_} =~ s/ //g; } qw(accno);
 
+  # collapse multiple (horizontal) whitespace in chart description (Ticket 148)
+  map { $form->{$_} =~ s/\h+/ /g } qw(description);
+
   my ($query, $sth);
 
   if ($form->{id} eq "NULL") {