Changeset 2095
- Timestamp:
- 02/21/2008 09:22:44 AM (11 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Session.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Session.php
r2013 r2095 258 258 * Destroys the current session. 259 259 * 260 * @return boolean260 * @return void 261 261 */ 262 262 public function destroy() … … 271 271 272 272 // Destroy the session 273 return session_destroy(); 273 session_destroy(); 274 275 // Re-initialize the array 276 $_SESSION = array(); 274 277 } 275 278 }
