Make sure the entries that just have a number work correctly
Cette révision appartient à :
Parent
b1eaa506b2
révision
2f5abb8488
@ -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];
|
||||
|
Chargement…
Référencer dans un nouveau ticket
Block a user