Update laravel/file.php
Fixed bug that was causing the latest function to return the 'last' file rather than the actual 'latest' file.
This commit is contained in:
parent
2e8364994f
commit
ee18da9b73
|
@ -340,7 +340,11 @@ public static function latest($directory, $options = fIterator::SKIP_DOTS)
|
||||||
// with a UNIX timestamp greater than the latest one.
|
// with a UNIX timestamp greater than the latest one.
|
||||||
foreach ($items as $item)
|
foreach ($items as $item)
|
||||||
{
|
{
|
||||||
if ($item->getMTime() > $time) $latest = $item;
|
if ($item->getMTime() > $time)
|
||||||
|
{
|
||||||
|
$latest = $item;
|
||||||
|
$time = $item->getMTime();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $latest;
|
return $latest;
|
||||||
|
|
Loading…
Reference in New Issue