Add "R" to the list of valid stati in SVNLog::process()

Robert Sesek [2005-09-01 01:21]
Add "R" to the list of valid stati in SVNLog::process()
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],