diff --git a/framework/base/router.class.php b/framework/base/router.class.php index d112ebe7f9..cc15289784 100644 --- a/framework/base/router.class.php +++ b/framework/base/router.class.php @@ -3233,7 +3233,8 @@ class ztSessionHandler public function destroy($id) { $sessFile = $this->getSessionFile($id); - @unlink($sessFile); + unlink($sessFile); + unlink($this->rawFile); touch($sessFile); return true; }