From 4a90d467c30da0c5f3adffd9c29ef0be66940490 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 17 Dec 2005 06:19:11 +0000 Subject: [PATCH] Don't return 'min' index on fetch_diff_extent() --- includes/svnlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/svnlib.php b/includes/svnlib.php index 435afd8..cc8724e 100644 --- a/includes/svnlib.php +++ b/includes/svnlib.php @@ -1005,7 +1005,7 @@ class SVNDiff $end--; } - return array('start' => $start, 'end' => $end + 1, 'min' => $min); + return array('start' => $start, 'end' => $end + 1); } } -- 2.22.5