Revision bed19453
Von Moritz Bunkus vor mehr als 8 Jahren hinzugefügt
SL/RP.pm | ||
---|---|---|
1266 | 1266 |
if ($form->{$ct_id}) { |
1267 | 1267 |
$where .= qq| AND (ct.id = | . conv_i($form->{$ct_id}) . qq|)|; |
1268 | 1268 |
} elsif ($form->{ $form->{ct} }) { |
1269 |
$where .= qq| AND (ct.name ILIKE | . $dbh->quote($::form->like($form->{$ct})) . qq|)|;
|
|
1269 |
$where .= qq| AND (ct.name ILIKE | . $dbh->quote(like($form->{$ct})) . qq|)|; |
|
1270 | 1270 |
} |
1271 | 1271 |
|
1272 | 1272 |
my $dpt_join; |
Auch abrufbar als: Unified diff
Funktion »like« von Form nach DBUtils verschoben
Das ist eine Datenbank-Quoting-Funktion und hat daher nichts mehr in
Form zu suchen.