Order of elements for Cookie::put() was wrong

Signed-off-by: Colin Viebrock <colin@viebrock.ca>
This commit is contained in:
Colin Viebrock 2012-05-10 22:04:56 -05:00
parent 492b49a04b
commit 97de6ef1d7
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ protected function cookie($name, $value, $minutes)
extract($config); extract($config);
Cookie::put($name, $minutes, $value, $path, $domain, $secure); Cookie::put($name, $value, $minutes, $path, $domain, $secure);
} }
/** /**