Allow the renaming of the drivers remember cookie

This commit is contained in:
Alex
2013-03-16 21:40:33 -05:00
parent 1bd93c3327
commit f5997b7f97

View File

@@ -215,7 +215,7 @@ abstract class Driver {
*/
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)));
}
}
}