Renaming directory for 1.x.x.x code base

git-svn-id: https://svn.cakephp.org/repo/branches/1.x.x.x@2771 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2006-05-07 03:35:58 +00:00
parent e41214da87
commit f5a4a58758
10 changed files with 123 additions and 63 deletions

View file

@ -207,5 +207,16 @@ class SessionComponent extends Object
return $this->CakeSession->isValid();
}
/**
* Enter description here...
*
* Use like this. $this->Session->destroy();
* Used to destroy Sessions
*
*/
function destroy()
{
$this->CakeSession->destroyInvalid();
}
}
?>