ChangeLog::isCurrentRevision PHP Method

isCurrentRevision() public method

Check whether given revision is the current page
public isCurrentRevision ( integer $rev ) : boolean
$rev integer timestamp of current page
return boolean true if $rev is current revision, otherwise false
    public function isCurrentRevision($rev)
    {
        return $rev == @filemtime($this->getFilename());
    }