Project

General

Profile

Actions

Bug #18771

closed

Order in t3lib_div::getFilesInDir is different from order in File list

Added by Albrecht Köhnlein almost 16 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
-
Target version:
-
Start date:
2008-05-11
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

On my webserver, I can added some "a" in front of a filename to make this file beeing the first in the order. In the file list in backend, it looked great. "a_newfile.jpg" was on top of the list before all the other "IMG_foo.jpg" files.

The plugin uses t3lib_div::getFilesInDir() to get the files from the file system and it returned the files in an other order. All files, starting with upper case are returned before all files with lower case.

I changed line 2865 of class.t3lib_div.php:

// original
// elseif ($order) {$sortarray[$key]=$entry;}
// my modification
elseif ($order) {$sortarray[$key]=strtolower($entry);}

now it works as I expect it

(issue imported from #M8373)

Actions #1

Updated by Benni Mack almost 12 years ago

  • Target version deleted (0)

Note: To reproduce this, check linking on a file, the file list there uses t3lib_div::getFilesInDir() - the file list module works as expected as it does not use this function.

Actions #2

Updated by Gerrit Code Review almost 12 years ago

  • Status changed from Accepted to Under Review

Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12659

Actions #3

Updated by Gerrit Code Review almost 12 years ago

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

Actions #4

Updated by Benni Mack almost 12 years ago

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

Updated by Gerrit Code Review almost 12 years ago

  • Status changed from Resolved to Under Review

Patch set 1 for branch TYPO3_4-5 has been pushed to the review server.
It is available at http://review.typo3.org/12685

Actions #6

Updated by Gerrit Code Review almost 12 years ago

Patch set 1 for branch TYPO3_4-6 has been pushed to the review server.
It is available at http://review.typo3.org/12686

Actions #7

Updated by Gerrit Code Review almost 12 years ago

Patch set 1 for branch TYPO3_4-7 has been pushed to the review server.
It is available at http://review.typo3.org/12687

Actions #8

Updated by Benni Mack almost 12 years ago

  • Status changed from Under Review to Resolved
Actions #9

Updated by Gerrit Code Review over 11 years ago

  • Status changed from Resolved to Under Review

Patch set 1 for branch TYPO3_4-7 has been pushed to the review server.
It is available at http://review.typo3.org/13195

Actions #10

Updated by Gerrit Code Review over 11 years ago

Patch set 1 for branch TYPO3_4-6 has been pushed to the review server.
It is available at http://review.typo3.org/13299

Actions #11

Updated by Alexander Opitz almost 11 years ago

  • Status changed from Under Review to Resolved

This issue was resolved, the two last gerrit code review message seem to be wrong.

Actions #12

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF