http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14321

--- Comment #52 from Jonathan Druart <jonathan.dru...@bugs.koha-community.org> 
---
(In reply to Marcel de Rooy from comment #50)
> > +sub _lookup {
> > +    my ( $self, $params ) = @_;
> > +    my $dbh = C4::Context->dbh;
> > +    my $sql = qq|
> > Variable interpolations should not be allowed in SQL queries.
> Which line do you exactly refer to now?

It's general:
  my $query = "SELECT [...]"
should be
  my $query = 'SELECT [...]'
or
  my $query = qq|SELECT [...]
should be
  my $query = q|SELECT [...]

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to