From d36ff528d01b9aab1c4143137fc9ef79f876646c Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 1 Sep 2005 01:21:05 +0000 Subject: [PATCH] Add "R" to the list of valid stati in SVNLog::process() --- includes/svnlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/svnlib.php b/includes/svnlib.php index 98d149e..978ee8b 100644 --- a/includes/svnlib.php +++ b/includes/svnlib.php @@ -641,7 +641,7 @@ class SVNLog $lastrev = $matches[1]; } - else if (preg_match('#^\s+([ADM])\s(.*)#', $line, $matches)) + else if (preg_match('#^\s+([ADMR])\s(.*)#', $line, $matches)) { $this->logs["$lastrev"]['files'][] = array( 'action' => $matches[1], -- 2.22.5