Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
280
Merge Requests
37
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
a3aa6391
Commit
a3aa6391
authored
3 minutes ago
by
Guy Thouret
Browse files
Options
Download
Boost Feed passes limit parameter to iterator - Fixes
#1105
parent
55e64119
goal/boost-campaigns-e24
1 merge request
!235
WIP: Boost Campaigns (&24)
Pipeline
#97531321
running with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Core/Boost/Feeds/Boost.php
View file @
a3aa6391
...
...
@@ -13,7 +13,7 @@ class Boost extends Feed
/** @var Core\Boost\Network\Iterator $iterator */
$iterator
=
$this
->
mockIterator
?:
Core\Di\Di
::
_
()
->
get
(
'Boost\Network\Iterator'
);
$iterator
->
setLimit
(
10
)
->
setLimit
(
$this
->
limit
)
->
setOffset
(
$this
->
offset
)
->
setQuality
(
$this
->
quality
)
->
setType
(
$this
->
type
)
...
...
This diff is collapsed.
Please
register
or
sign in
to comment