Merge branch 'rh/maint-gitweb-highlight-ext'
[gitweb.git] / perl / Git / SVN.pm
index ae3b6a4179bccaa37b6d72851ad068ee8a1b1eca..59215fa86e2c2902ec97b12bea70736f9c7c02c6 100644 (file)
@@ -1679,7 +1679,6 @@ sub parents_exclude {
                                if ( $commit eq $excluded ) {
                                        push @excluded, $commit;
                                        $found++;
-                                       last;
                                }
                                else {
                                        push @new, $commit;
@@ -2332,11 +2331,11 @@ sub path {
 
        if (@_) {
                my $path = shift;
-               $self->{path} = canonicalize_path($path);
+               $self->{_path} = canonicalize_path($path);
                return;
        }
 
-       return $self->{path};
+       return $self->{_path};
 }
 
 sub url {