diff --git a/cake/libs/cake_session.php b/cake/libs/cake_session.php index c76659b3d..6a3f45010 100644 --- a/cake/libs/cake_session.php +++ b/cake/libs/cake_session.php @@ -171,7 +171,9 @@ class CakeSession { ClassRegistry::init($settings); } if ($start === true) { - if (!empty($base)) { + if (empty($base)) { + self::$path = '/'; + } else { self::$path = $base; if (strpos($base, 'index.php') !== false) { self::$path = str_replace('index.php', '', $base);