Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
services
T
t3o sites
extensions.typo3.org
extensions.typo3.org
Commits
10b041a3
Commit
10b041a3
authored
Sep 08, 2020
by
Thomas Löffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore some functionality removed by rector
parent
a6940d61
Pipeline
#9548
failed with stages
in 2 minutes and 41 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
extensions/ter_fe2/Classes/Domain/Model/Version.php
extensions/ter_fe2/Classes/Domain/Model/Version.php
+1
-0
extensions/ter_fe2/Classes/Domain/Repository/CombinedExtensionRepository.php
...Classes/Domain/Repository/CombinedExtensionRepository.php
+1
-1
extensions/ter_fe2/Classes/Service/LTSVersionService.php
extensions/ter_fe2/Classes/Service/LTSVersionService.php
+1
-1
No files found.
extensions/ter_fe2/Classes/Domain/Model/Version.php
View file @
10b041a3
...
...
@@ -24,6 +24,7 @@ use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
class
Version
extends
\
TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
const
VERSION_IS_INSECURE
=
-
1
;
const
VERSION_IS_OUTDATED
=
-
2
;
/**
* Title of the extension
...
...
extensions/ter_fe2/Classes/Domain/Repository/CombinedExtensionRepository.php
View file @
10b041a3
...
...
@@ -25,7 +25,7 @@ use TYPO3\CMS\Core\Utility\GeneralUtility;
*/
class
CombinedExtensionRepository
{
protected
object
$documentationService
;
protected
?DocumentationService
$documentationService
=
null
;
public
function
__construct
(
DocumentationService
$documentationService
=
null
)
{
...
...
extensions/ter_fe2/Classes/Service/LTSVersionService.php
View file @
10b041a3
...
...
@@ -159,7 +159,7 @@ class LTSVersionService
public
function
getOldLTSVersions
():
array
{
$oldLTSVersions
=
[];
$allLTSVersions
=
$this
->
getAllLTSVersions
();
$allLTSVersions
=
$this
->
getAllLTSVersions
(
true
);
foreach
(
$allLTSVersions
as
$version
)
{
if
(
!
in_array
(
$version
,
array_merge
(
$this
->
getActiveVersions
(),
$this
->
getELTSVersions
()),
true
))
{
$oldLTSVersions
[]
=
$version
;
...
...
Write
Preview
Markdown
is supported
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