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

View File

@@ -148,7 +148,7 @@ class Profiler {
$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);