Merge pull request #1793 from alexgalletti/patch-1

Allow the renaming of the drivers remember cookie
This commit is contained in:
Taylor Otwell 2013-03-28 13:40:57 -07:00
commit dd7c317707
1 changed files with 2 additions and 2 deletions

View File

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