"added empty method delete_cache, as it get's called in some places - thought it does nothing"

This commit is contained in:
Ralf Becker 2008-08-09 04:24:54 +00:00
parent ab37be5fba
commit 666e6793a7

View File

@ -1197,4 +1197,15 @@ class egw_session //extends sessions
{
session_write_close();
}
/**
* Delete all data from the session cache for a user
*
* @param int $accountid user account id, defaults to current user (optional)
* @deprecated not longer used / necessary
*/
function delete_cache($accountid='')
{
}
}