From b9ec5b2a37ce395d40ea0996250cc3673e1fdc18 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 2 Dec 2005 21:32:33 +0000 Subject: [PATCH] Instead of passing 0 as the high revision in fetch_logs => SVNLog(), use fetch_rev_num() --- includes/svnlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/svnlib.php b/includes/svnlib.php index d4e6558..3c2f049 100644 --- a/includes/svnlib.php +++ b/includes/svnlib.php @@ -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(); } -- 2.22.5