Skip to content
GitLab
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
782156e9
Commit
782156e9
authored
Apr 10, 2018
by
Thomas Löffler
Browse files
Reverse the order of the major versions
parent
6f19bb85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Classes/Controller/RoadmapController.php
View file @
782156e9
...
...
@@ -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
.
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