Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOOD
·
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
wuxiao
10 years ago
Commit
624b329a09dc36e1774f799e353edde144bfb706
1 parent
bd130329
邀请函需求,修复分页缓存
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
website/service/Invitation.class.php
website/service/Invitation.class.php
View file @
624b329
...
...
@@ -53,7 +53,7 @@ class Service_Invitation extends Lib_Service
$replaces
=
array
(
'LIMIT'
=>
$limit
?
"LIMIT
{
$offset
}
,
{
$limit
}
"
:
''
);
return
self
::
service
(
self
::
ROUTER
)
->
tag
(
self
::
$_tag
)
->
key
(
self
::
$_key
.
__FUNCTION__
)
->
fetchAll
(
'getApplyList'
,
array
(),
$replaces
);
return
self
::
service
(
self
::
ROUTER
)
->
tag
(
self
::
$_tag
)
->
key
(
self
::
$_key
.
__FUNCTION__
.
"_
{
$offset
}
_
{
$limit
}
"
)
->
fetchAll
(
'getApplyList'
,
array
(),
$replaces
);
}
/**
...
...
@@ -65,7 +65,7 @@ class Service_Invitation extends Lib_Service
$replaces
=
array
(
'LIMIT'
=>
$limit
?
"LIMIT
{
$offset
}
,
{
$limit
}
"
:
''
);
return
self
::
service
(
self
::
ROUTER
)
->
tag
(
self
::
$_tag
)
->
key
(
self
::
$_key
.
__FUNCTION__
)
->
fetchAll
(
'getPassList'
,
array
(),
$replaces
);
return
self
::
service
(
self
::
ROUTER
)
->
tag
(
self
::
$_tag
)
->
key
(
self
::
$_key
.
__FUNCTION__
.
"_
{
$offset
}
_
{
$limit
}
"
)
->
fetchAll
(
'getPassList'
,
array
(),
$replaces
);
}
/**
...
...
Please
register
or
login
to post a comment