Merge pull request #1806 from Gargron/patch-1

Fix for double escaping of queries in the profiler
This commit is contained in:
Taylor Otwell 2013-03-28 13:36:11 -07:00
commit 7244405868
1 changed files with 2 additions and 2 deletions

View File

@ -146,9 +146,9 @@ public static function query($sql, $bindings, $time)
foreach ($bindings as $binding)
{
$binding = Database::escape($binding);
$sql = preg_replace('/\?/', $binding, $sql, 1);
$sql = htmlspecialchars($sql);
$sql = htmlspecialchars($sql, ENT_QUOTES, 'UTF-8', false);
}
static::$data['queries'][] = array($sql, $time);