Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
liexin_supplier
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c2f14d4d
authored
Aug 31, 2022
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
登陆校验
parent
41d9316c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/Http/Middleware/CheckLogin.php
app/Http/Middleware/CheckLogin.php
View file @
c2f14d4d
...
...
@@ -21,8 +21,8 @@ class CheckLogin
{
$login
=
config
(
'website.login'
);
if
(
empty
(
$request
->
input
(
'token'
)))
{
$userId
=
$request
->
cookie
(
'oa_user_id'
);
$skey
=
$request
->
cookie
(
'oa_skey'
);
$userId
=
$request
->
cookie
(
'oa_user_id'
)
?:
$request
->
header
(
'oa_user_id'
)
;
$skey
=
$request
->
cookie
(
'oa_skey'
)
?:
$request
->
header
(
'oa_skey'
)
;
$isApi
=
false
;
$hasApiRoute
=
strpos
(
$request
->
path
(),
'api/'
);
...
...
Write
Preview
Markdown
is supported
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