diff --git a/SourceSFSVN/SourceSFSVN.php b/SourceSFSVN/SourceSFSVN.php index edac683..885d721 100644 --- a/SourceSFSVN/SourceSFSVN.php +++ b/SourceSFSVN/SourceSFSVN.php @@ -185,7 +185,7 @@ $t_url = $p_repo->url; $t_rev = $t_db_revision + 1; - $t_svnlog = explode( "\n", `svn log -v -r $t_rev:HEAD $t_url` ); + $t_svnlog = explode( "\n", `svn log -v -r $t_rev:HEAD --limit 200 $t_url` ); return $this->process_svn_log( $p_repo, $t_svnlog ); } diff --git a/SourceWebSVN/SourceWebSVN.php b/SourceWebSVN/SourceWebSVN.php index 2118769..06a9a5b 100644 --- a/SourceWebSVN/SourceWebSVN.php +++ b/SourceWebSVN/SourceWebSVN.php @@ -199,7 +199,7 @@ $t_url = $p_repo->url; $t_rev = $t_db_revision + 1; - $t_svnlog = explode( "\n", `svn log -v -r $t_rev:HEAD $t_url` ); + $t_svnlog = explode( "\n", `svn log -v -r $t_rev:HEAD --limit 200 $t_url` ); return $this->process_svn_log( $p_repo, $t_svnlog ); }