[Koha-bugs] [Bug 14321] Merge UploadedFile and UploadedFiles into Koha::Upload

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Sep 16 14:10:47 CEST 2015


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

--- Comment #56 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> ---
(In reply to Jonathan Druart from comment #52)
> (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 [...]

OK. Clear. Will add that. Note that there were no variables..

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list