Project

General

Profile

Actions

Bug #59619

closed

Static call of non-static function in Package.php

Added by Jan Schreier almost 10 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
Start date:
2014-06-17
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

in Classes/Package/PackageManager.php around line 73 there is this line:

if (!\TYPO3\CMS\Core\Package\PackageManager::isPackageKeyValid($packageKey)) {

the called method "isPackageKeyValid" is non-satic so from my understanding it should be changed to:

if (!$packageManager->isPackageKeyValid($packageKey)) {

can somebody check this?

Actions

Also available in: Atom PDF