8
0

Make sure the entries that just have a number work correctly

Dieser Commit ist enthalten in:
Stéphane Goetz 2015-08-04 22:40:24 +02:00
Ursprung b1eaa506b2
Commit 2f5abb8488

Datei anzeigen

@ -109,7 +109,11 @@ class Builder
protected static function removeSortingInformations($filename, $separator = '_')
{
$filename = explode('_', $filename);
if ($filename[0] == '' || is_numeric($filename[0])) {
// Remove the numeric part of the
// filename, only if there is
// something after that
if ($filename[0] == '' || (is_numeric($filename[0]) && array_key_exists(1, $filename))) {
unset($filename[0]);
} else {
$t = $filename[0];