Skip to content

Commit

Permalink
[*] CORE : Update DB adapter accordingly to Db::escape update for bac…
Browse files Browse the repository at this point in the history
…kquotes
  • Loading branch information
tchauviere committed Jun 10, 2015
1 parent bf5473e commit b92db9d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Adapter/Adapter_Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ public function select($sqlString)
*/
public function escape($unsafeData)
{
// Prepare required params
$html_ok = true;
return Db::getInstance()->escape($unsafeData, $html_ok);
$bq_sql = true;
return Db::getInstance()->escape($unsafeData, $html_ok, $bq_sql);
}
}

0 comments on commit b92db9d

Please sign in to comment.