Skip to content

Commit

Permalink
Fixing session write use issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
predominant authored and markstory committed Jul 28, 2010
1 parent dd3e0fa commit 4e9d76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/cake_session.php
Expand Up @@ -217,7 +217,7 @@ public static function start() {
* @return boolean True if session has been started.
*/
public static function started() {
return isset($_SESSION) && !empty(session_id());
return isset($_SESSION) && session_id();
}

/**
Expand Down

0 comments on commit 4e9d76e

Please sign in to comment.