From: Ivan Kohler Date: Mon, 11 Mar 2013 09:17:38 +0000 (-0700) Subject: fix quotations, RT#21103 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=1bcdfeb83a6757101cfc1e3122e5c8d157ecb8fd;p=freeside.git fix quotations, RT#21103 --- diff --git a/FS/FS/TemplateItem_Mixin.pm b/FS/FS/TemplateItem_Mixin.pm index f9ab51af6..324f05248 100644 --- a/FS/FS/TemplateItem_Mixin.pm +++ b/FS/FS/TemplateItem_Mixin.pm @@ -275,7 +275,7 @@ sub cust_bill_pkg_display { my $order_by = $self->display_table_orderby || 'billpkgdisplaynum'; @result = qsearch ({ 'table' => $self->display_table, - 'hashref' => { 'billpkgnum' => $self->billpkgnum }, + 'hashref' => $hashref, 'order_by' => "ORDER BY $order_by", }); }