Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
hf
2015-12-07 20:38:32 +0800
Commit
c9fea6252171c40e4e943c85c2ebde3d56c01d8d
1 parent
18698dfb
fixes bug to partner login
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
library/Action/AbstractAction.php
yohobuy/m.yohobuy.com/application/controllers/Error.php
library/Action/AbstractAction.php
View file @
c9fea62
...
...
@@ -317,7 +317,6 @@ class AbstractAction extends Controller_Abstract
}
}
}
var_dump
(
$useSession
,
'+++'
,
$this
->
_uid
);
return
$this
->
_uid
;
}
...
...
yohobuy/m.yohobuy.com/application/controllers/Error.php
View file @
c9fea62
...
...
@@ -36,5 +36,12 @@ class ErrorController extends AbstractAction
'showDownloadApp'
=>
true
,
));
}
public
function
testAction
()
{
$uid
=
$this
->
getUid
(
true
);
$session
=
$this
->
getSession
(
'_TOKEN'
);
var_dump
(
$uid
,
'+++'
,
$session
,
APPLICATION_ENV
);
}
}
...
...
Please
register
or
login
to post a comment