Error in file functions_images.inc.php

Discussion corner for Developers of Serendipity.
Post Reply
frabron
Regular
Posts: 8
Joined: Wed Oct 08, 2008 4:56 pm
Contact:

Error in file functions_images.inc.php

Post by frabron »

Hi,

I found a bug (missing quotes) in the functions_images.inc.php file while answering this topic http://board.s9y.org/viewtopic.php?t=13940 about a query not functioning. You can see the details there but I will post a quick diff

Line 208:

Code: Select all

$query = "SELECT {$cond['distinct']} i.id, {$cond[orderkey]} AS orderkey, 
should be

Code: Select all

$query = "SELECT {$cond['distinct']} i.id, {$cond['orderkey']} AS orderkey, 
please note the missing quotes on
$cond['orderkey']
Greetings Frank

EDIT:
:shock: Superduper, got the wrong forum, sorry for that ...
Post Reply