projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6d9d29
)
Bugfix: Historiensuchmaschine, nur echte ids aus der Datenbank suchen
author
Sven Schöling
<s.schoeling@linet-services.de>
Fri, 4 Sep 2009 08:58:57 +0000
(10:58 +0200)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Fri, 4 Sep 2009 08:58:57 +0000
(10:58 +0200)
Fix für Bug 1101.
bin/mozilla/am.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/am.pl
b/bin/mozilla/am.pl
index
6846326
..
0aac5a1
100644
(file)
--- a/
bin/mozilla/am.pl
+++ b/
bin/mozilla/am.pl
@@
-2856,7
+2856,7
@@
sub show_am_history {
( $form->{'searchid'} ? qq| WHERE snumbers = '| . $searchNo{$form->{'what2search'}} . qq|_| . $form->{'searchid'} . qq|'|
: qq| WHERE snumbers ~ '^| . $searchNo{$form->{'what2search'}} . qq|'|);
- my @ids = selectall_array_query($form, $dbh, $query);
+ my @ids =
grep { $_ * 1 }
selectall_array_query($form, $dbh, $query);
my $daten .= shift @ids;
$daten .= join '', map { " OR trans_id = $_" } @ids;