mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-02 16:37:59 +09:00
Filter string latest in list of latest versions
This commit is contained in:
parent
644f92f6a5
commit
52f8db8b79
@ -12,7 +12,7 @@
|
||||
<?php
|
||||
$DOWNLOAD_DIR = 'downloads';
|
||||
|
||||
$versions = array_filter(scandir($DOWNLOAD_DIR), function($v) {return $v{0} != '.';});
|
||||
$versions = array_filter(scandir($DOWNLOAD_DIR), function($v) {return (($v{0} != '.') && ($v != 'latest'));});
|
||||
sort($versions);
|
||||
|
||||
$latest = end($versions);
|
||||
|
Loading…
Reference in New Issue
Block a user