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

jpetso’s picture

Issue tags: +gsoc2009-dhax

Rebranding: chrono325 → dhax

sdboyer’s picture

Assigned: Unassigned » sdboyer

Oooh, 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.