From 31c79419b5c46bc2759f1f904fbeb00e7aa84910 Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Mon, 4 Aug 2008 21:25:19 +0200 Subject: [PATCH] Limit to the latest 25 commits in the changelog. --- src/IDF/Views/Source.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/Views/Source.php b/src/IDF/Views/Source.php index d4ad929..80a30c4 100644 --- a/src/IDF/Views/Source.php +++ b/src/IDF/Views/Source.php @@ -37,7 +37,7 @@ class IDF_Views_Source $git = new IDF_Git($request->project->getGitRepository()); $branches = $git->getBranches(); $commit = $match[2]; - $res = $git->getChangeLog($commit, 50); + $res = $git->getChangeLog($commit, 25); return Pluf_Shortcuts_RenderToResponse('source/changelog.html', array( 'page_title' => $title,