From 5e9757fe5d8244d5d1152cbaf54d8d0261d186ce Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 2 Dec 2005 21:28:05 +0000 Subject: [PATCH] isdir() should use fetch_rev_num() instead of HEAD --- includes/svnlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/svnlib.php b/includes/svnlib.php index 10b4ff6..d4e6558 100644 --- a/includes/svnlib.php +++ b/includes/svnlib.php @@ -375,7 +375,7 @@ class SVNCommon */ function isdir($path) { - $output = $this->registry->svn->std('info', $this->registry->paths->fetch_repos($path), $this->registry->paths->fetch_path($path), 'HEAD'); + $output = $this->registry->svn->std('info', $this->registry->paths->fetch_repos($path), $this->registry->paths->fetch_path($path), $this->registry->paths->fetch_rev_num()); foreach ($output AS $line) { -- 2.22.5