When a Subversion repository fetches new logs, it sets a message telling how many commits it added. The problem is, it uses count($revisions) to set the message to the user (versioncontrol_svn.log.inc:129), which always returns 1.
Implementing Countable would let count() return the correct result.
Comments
Comment #1
jpetso commentedRebranding: chrono325 → dhax
Comment #2
sdboyer commentedOooh, I missed that, The
count()call is a leftover from the original code. I'll have a look at this, and see if it's more prudent to implement Countable or do it by some other means.