Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
lolo888
ISPConfig 3
Commits
e615265d
Commit
e615265d
authored
Aug 29, 2011
by
tbrehm
Browse files
Fixed php notice in session library.
parent
6c9b8b9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/session.inc.php
View file @
e615265d
...
...
@@ -77,7 +77,7 @@ class session {
}
if
(
$this
->
session_array
[
'session_id'
]
==
''
)
{
if
(
@
$this
->
session_array
[
'session_id'
]
==
''
)
{
$session_id
=
$this
->
db
->
quote
(
$session_id
);
$date_created
=
date
(
'Y-m-d H:i:s'
);
$last_updated
=
date
(
'Y-m-d H:i:s'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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