In line ~94 I have removed "$sql" because I had trouble after installing 4Images with VB integration.
Original:
$query = "SELECT faqid,title FROM faq $sql ORDER BY showorder";
It's now:
$query = "SELECT faqid,title FROM faq ORDER BY showorder";
Everything works fine now, but I wonder if removing the $sql could cause any trouble in future (I know almost nothing about php/sql ^^; )
Just wanted to hear your opinion about this.
|