X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FimportImages.php;h=172869506b62d2e43a0cce0d0b17e3f68cfc22f5;hb=7110e89e542f972bc148ece238829f00fb2e1053;hp=5db1fa89c4910fa77be84b9891813273a11a6ade;hpb=3f59cb9f3a53ad28f8a95fe299c5de6abd24b453;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/importImages.php b/maintenance/importImages.php index 5db1fa89c4..172869506b 100644 --- a/maintenance/importImages.php +++ b/maintenance/importImages.php @@ -335,7 +335,6 @@ class ImportImages extends Maintenance { $props, $timestamp )->isOK() ) { - # We're done! $this->output( "done.\n" ); $doProtect = false; @@ -419,7 +418,7 @@ class ImportImages extends Maintenance { $files = []; while ( ( $file = readdir( $dhl ) ) !== false ) { if ( is_file( $dir . '/' . $file ) ) { - list( /* $name */, $ext ) = $this->splitFilename( $dir . '/' . $file ); + $ext = pathinfo( $file, PATHINFO_EXTENSION ); if ( array_search( strtolower( $ext ), $exts ) !== false ) { $files[] = $dir . '/' . $file; } @@ -437,21 +436,6 @@ class ImportImages extends Maintenance { } } - /** - * Split a filename into filename and extension - * - * @param string $filename - * @return array - */ - private function splitFilename( $filename ) { - $parts = explode( '.', $filename ); - $ext = $parts[count( $parts ) - 1]; - unset( $parts[count( $parts ) - 1] ); - $fname = implode( '.', $parts ); - - return [ $fname, $ext ]; - } - /** * Find an auxilliary file with the given extension, matching * the give base file path. $maxStrip determines how many extensions