Changeset 1619 for trunk/system/libraries/Session.php
- Timestamp:
- 12/26/2007 06:14:37 PM (13 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Session.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Session.php
r1522 r1619 318 318 return $_SESSION; 319 319 320 $result = Kohana::key_string($key, $_SESSION);320 $result = isset($_SESSION[$key]) ? $_SESSION[$key] : Kohana::key_string($key, $_SESSION); 321 321 322 322 return ($result === NULL) ? $default : $result;
