Commit 97de6ef1 authored by Colin Viebrock's avatar Colin Viebrock

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

Signed-off-by: 's avatarColin Viebrock <colin@viebrock.ca>
parent 492b49a0
......@@ -188,7 +188,7 @@ abstract class Driver {
extract($config);
Cookie::put($name, $minutes, $value, $path, $domain, $secure);
Cookie::put($name, $value, $minutes, $path, $domain, $secure);
}
/**
......
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