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

View File

@@ -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);
}
/**