Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHO-ACTIVITY-PHP
·
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
9 years ago
Commit
eca3e9d28bc916b164abf755d8bb7797c9015bf3
1 parent
9e6e8ba5
code review by hf: fixes bug refs YW-1810
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
library/Action/AbstractAction.php
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Login.php
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Reg.php
library/Action/AbstractAction.php
View file @
eca3e9d
...
...
@@ -376,8 +376,8 @@ class AbstractAction extends Controller_Abstract
* 设置网站SEO的描述内容
*
* @param string $description 描述内容
* @param string $sign 连接的字符串
* @param bool $showMore 是否显示更多内容
* @param string $sign 连接的字符串
* @return void
*/
protected
function
setDescription
(
$description
,
$showMore
=
true
,
$sign
=
' '
)
...
...
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Login.php
View file @
eca3e9d
...
...
@@ -26,7 +26,7 @@ class LoginController extends AbstractAction
$data
=
array
(
'loginIndex'
=>
true
,
// 模板中使用JS的标识
'backUrl'
=>
'
/
'
,
// 返回的URL链接
'backUrl'
=>
'
javascript:hostroy.go(-1)
'
,
// 返回的URL链接
'showHeaderImg'
=>
true
,
// 控制显示头部图片
'isPassportPage'
=>
true
,
// 模板中模块标识
'registerUrl'
=>
'/reg.html'
,
// 注册的URL链接
...
...
@@ -56,7 +56,7 @@ class LoginController extends AbstractAction
$data
=
array
();
$data
[
'loginInternational'
]
=
true
;
// 模板中使用JS的标识
$data
[
'backUrl'
]
=
'
/
'
;
// 返回的URL链接
$data
[
'backUrl'
]
=
'
javascript:hostroy.go(-1)
'
;
// 返回的URL链接
$data
[
'headerText'
]
=
'登录'
;
// 头部信息
$data
[
'isPassportPage'
]
=
true
;
// 模板中模块标识
$data
[
'areaCode'
]
=
'+86'
;
// 默认区号
...
...
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Reg.php
View file @
eca3e9d
...
...
@@ -19,7 +19,7 @@ class RegController extends AbstractAction
$data
=
array
();
$data
[
'regIndex'
]
=
true
;
// 模板中使用JS的标识
$data
[
'backUrl'
]
=
'
/
'
;
// 返回的URL链接
$data
[
'backUrl'
]
=
'
javascript:hostroy.go(-1)
'
;
// 返回的URL链接
$data
[
'headerText'
]
=
'注册'
;
// 头部信息
$data
[
'isPassportPage'
]
=
true
;
// 模板中模块标识
$data
[
'areaCode'
]
=
'+86'
;
// 默认的区号
...
...
@@ -56,7 +56,7 @@ class RegController extends AbstractAction
$data
=
array
(
'regCode'
=>
true
,
// 模板中使用JS的标识
'backUrl'
=>
'/
'
,
// 返回的URL链接
'backUrl'
=>
SITE_MAIN
.
'/?go=1
'
,
// 返回的URL链接
'headerText'
=>
'注册'
,
// 头部信息
'isPassportPage'
=>
true
,
// 模板中模块标识
'areaCode'
=>
'+'
.
$area
,
// 地区编号
...
...
Please
register
or
login
to post a comment