Project

General

Profile

Actions

Bug #49136

closed

Wrong order of MediaWizardProvider in MediaWizardProviderManager

Added by Markus Hölzle almost 11 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2013-06-14
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.1
PHP Version:
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:

Description

Here is a bug in TYPO3\CMS\Frontend\MediaWizard\MediaWizardProviderManager on line 65:

$providers = array_reverse(self::$providers, TRUE);
foreach (self::$providers as $className => $provider) {
...
}

Is has to be:

$providers = array_reverse(self::$providers, TRUE);
foreach ($providers as $className => $provider) {
...
}
Actions #1

Updated by Gerrit Code Review almost 11 years ago

  • Status changed from New to Under Review

Patch set 2 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/21471

Actions #2

Updated by Gerrit Code Review almost 11 years ago

Patch set 3 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/21471

Actions #3

Updated by Gerrit Code Review almost 11 years ago

Patch set 1 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/21472

Actions #4

Updated by Gerrit Code Review almost 11 years ago

Patch set 1 for branch TYPO3_6-0 has been pushed to the review server.
It is available at https://review.typo3.org/21473

Actions #5

Updated by Gerrit Code Review almost 11 years ago

Patch set 2 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/21472

Actions #6

Updated by Gerrit Code Review almost 11 years ago

Patch set 3 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/21472

Actions #7

Updated by Alexander Opitz almost 11 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #8

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF