Toggle navigation
Toggle navigation
This project
Loading...
Sign in
UT
/
oauth_2-0_client_php
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
redmine
2014-04-17 16:52:55 +0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7afa93f85446c6ff8595143f683fe24c44904231
7afa93f8
1 parent
3f81c65b
Fixed error with already started sessions
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
OAuth2/DataStore/Session.php
OAuth2/DataStore/Session.php
View file @
7afa93f
...
...
@@ -34,7 +34,9 @@ use OAuth2\Token;
class
Session
implements
DataStore
{
public
function
__construct
()
{
session_start
();
if
(
session_status
()
==
PHP_SESSION_NONE
)
{
session_start
();
}
}
/**
...
...
Please
register
or
login
to post a comment