Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
typo3.org
typo3_roadmap
Commits
5e17abd2
Commit
5e17abd2
authored
Apr 10, 2018
by
Thomas Löffler
Committed by
Stefan Busemann
Apr 30, 2018
Browse files
Reverse the order of the major versions
parent
9ed950d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Classes/Controller/RoadmapController.php
View file @
5e17abd2
...
...
@@ -63,7 +63,7 @@ class RoadmapController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionControll
*/
public
function
roadmapAction
()
{
$majorVersions
=
$this
->
majorVersionRepository
->
findAll
()
->
toArray
();
$majorVersions
=
array_reverse
(
$this
->
majorVersionRepository
->
findAll
()
->
toArray
()
)
;
$this
->
view
->
assign
(
'majorVersions'
,
$majorVersions
);
$phpVersions
=
$this
->
phpVersionRepository
->
findAll
()
->
toArray
();
$this
->
view
->
assign
(
'phpVersions'
,
$phpVersions
);
...
...
Write
Preview
Supports
Markdown
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