Commit dd7c3177 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #1793 from alexgalletti/patch-1

Allow the renaming of the drivers remember cookie
parents 72444058 f5997b7f
...@@ -215,7 +215,7 @@ abstract class Driver { ...@@ -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 { ...@@ -228,4 +228,4 @@ abstract class Driver {
return strtolower(str_replace('\\', '_', get_class($this))); return strtolower(str_replace('\\', '_', get_class($this)));
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment