some small refactoring and bug fixing.

This commit is contained in:
Taylor Otwell
2011-11-13 15:23:48 -06:00
parent 04f7661292
commit 2758b4c16d
4 changed files with 4 additions and 6 deletions

View File

@@ -114,7 +114,7 @@ class Cookie {
*/
protected static function hash($name, $value)
{
return sha1($name.$value.Config::get('application.key'));
return sha1($name.$value.Config::$items['application']['key']);
}
/**