Merge "When fetching combined seenTime, get 'min' value rather than max"

This commit is contained in:
jenkins-bot 2016-08-01 22:02:16 +00:00 committed by Gerrit Code Review
commit 11f2b000d8

View file

@ -53,7 +53,7 @@ class EchoSeenTime {
$vals[] = $this->getTime( $allowed, $flags, TS_MW );
}
return wfTimestamp( $format, max( $vals ) );
return wfTimestamp( $format, min( $vals ) );
}
if ( $this->validateType( $type ) ) {