summaryrefslogtreecommitdiff
path: root/LedgerSMB/IC.pm
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-09 18:37:39 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-09 18:37:39 +0000
commit9e097216a8e00e16a97a89040a4ffc33df1b4862 (patch)
treefbca6a859ce447886a940c9ac1c08a33399fd9f6 /LedgerSMB/IC.pm
parentd70512a802e60a52847a42f4f70bb91a2d16218d (diff)
Fixing 1750653
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1356 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB/IC.pm')
-rwxr-xr-xLedgerSMB/IC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/IC.pm b/LedgerSMB/IC.pm
index 090391dc..3132a8a7 100755
--- a/LedgerSMB/IC.pm
+++ b/LedgerSMB/IC.pm
@@ -640,7 +640,7 @@ sub retrieve_assemblies {
}
if ( $form->{description} ne "" ) {
- my $description = $dbh->( $form->like( lc $form->{description} ) );
+ my $description = $dbh->quote( $form->like( lc $form->{description} ) );
$where .= " AND lower(p.description) LIKE $description";
}
$where .= qq| AND p.obsolete = '0'