Instead of passing 0 as the high revision in fetch_logs => SVNLog(), use fetch_rev_num()
authorRobert Sesek <rsesek@bluestatic.org>
Fri, 2 Dec 2005 21:32:33 +0000 (21:32 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Fri, 2 Dec 2005 21:32:33 +0000 (21:32 +0000)
includes/svnlib.php

index d4e65589ec8699c84eeab2b10ed169e2789a5a05..3c2f04982229e1bb6c95a4f92d23d961b2f6410a 100644 (file)
@@ -481,7 +481,7 @@ class SVNCommon
        {
                if (!isset($this->logs["$path"]))
                {
-                       $log = new SVNLog($this->registry->paths->fetch_repos($path), $this->registry->paths->fetch_path($path), 0, 0);
+                       $log = new SVNLog($this->registry->paths->fetch_repos($path), $this->registry->paths->fetch_path($path), 0, $this->registry->paths->fetch_rev_num());
                        
                        $this->logs["$path"] = $log->fetch();
                }