|
@@ -340,7 +340,11 @@ class File {
|
|
// 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;
|