From 585889218399262c17ac587a91cf1ced834a323a Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 23 Jan 2006 05:20:23 +0000 Subject: [PATCH] Revision ranges aren't allowed for info and proplist in build() --- includes/cachev.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/cachev.php b/includes/cachev.php index 26bf9c2..3c11f3d 100644 --- a/includes/cachev.php +++ b/includes/cachev.php @@ -335,12 +335,12 @@ class cacheV $tree = $this->controller->registry->xml->parse($output); // get _nodes - $output = $this->controller->library->svn('info --xml -R ' . ($revision !== null ? '-r' . $revision . ':HEAD ' : '') . $this->controller->repospath); + $output = $this->controller->library->svn('info --xml -R ' . $this->controller->repospath); $output = implode("\n", $output); $infolist = $this->controller->registry->xml->parse($output); // other part of _nodes: properties - $output = $this->controller->library->svn('proplist -v -R ' . ($revision !== null ? ' -r' . $revision . ':HEAD ' : '') . $this->controller->repospath); + $output = $this->controller->library->svn('proplist -v -R ' . $this->controller->repospath); foreach ($output AS $line) { if (preg_match('#^Properties on \'(.*?)\':$#', $line, $bits)) -- 2.22.5