Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fusiondirectory
fusiondirectory
Commits
b7de4b46
Commit
b7de4b46
authored
Apr 20, 2016
by
Côme Chilliet
Browse files
Fixed an error in session::global_delete
parent
f64e184c
Changes
1
Show whitespace changes
Inline
Side-by-side
include/class_session.inc
View file @
b7de4b46
...
...
@@ -175,7 +175,7 @@ class session {
*/
public
static
function
global_delete
(
$name
)
{
if
(
$_SESSION
[
$name
])
{
if
(
isset
(
$_SESSION
[
$name
])
)
{
unset
(
$_SESSION
[
$name
]);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment