Merge branch 'master' of github.com:laravel/laravel

This commit is contained in:
Taylor Otwell
2013-03-28 15:50:36 -05:00
2 changed files with 4 additions and 4 deletions

View File

@@ -215,7 +215,7 @@ abstract class Driver {
*/ */
protected function recaller() protected function recaller()
{ {
return $this->name().'_remember'; return Config::get('auth.cookie', $this->name().'_remember');
} }
/** /**
@@ -228,4 +228,4 @@ abstract class Driver {
return strtolower(str_replace('\\', '_', get_class($this))); return strtolower(str_replace('\\', '_', get_class($this)));
} }
} }

View File

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