From bb2a23174970186ad02c0d6ca10502ffbc0b91c6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 11 Jul 2011 07:06:20 -0700 Subject: [PATCH] Pass session ID into session::load. --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 3fdfb6b4..a3b21fd6 100644 --- a/public/index.php +++ b/public/index.php @@ -73,7 +73,7 @@ // -------------------------------------------------------------- if (System\Config::get('session.driver') != '') { - System\Session::load(); + System\Session::load(System\Cookie::get('laravel_session')); } // --------------------------------------------------------------