aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/sessions.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2013-02-09 08:01:12 -0500
committerCash Costello <cash.costello@gmail.com>2013-02-09 08:01:12 -0500
commitf416d7ba66000d485260a8e63962541afa248320 (patch)
tree854c25506b0caade47b84ca8fdd24148666a294f /engine/lib/sessions.php
parent707df9db27cf2154910978427b9844448bcf931a (diff)
downloadelgg-f416d7ba66000d485260a8e63962541afa248320.tar.gz
elgg-f416d7ba66000d485260a8e63962541afa248320.tar.bz2
small changes to previous commit from Steve's cleanup
Diffstat (limited to 'engine/lib/sessions.php')
-rw-r--r--engine/lib/sessions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/sessions.php b/engine/lib/sessions.php
index eb451f05a..3dd95aa2f 100644
--- a/engine/lib/sessions.php
+++ b/engine/lib/sessions.php
@@ -616,7 +616,7 @@ function _elgg_session_destroy($id) {
global $sess_save_path;
$sess_file = "$sess_save_path/sess_$id";
- return (@unlink($sess_file));
+ return @unlink($sess_file);
}
return false;