From f36454b8495a41ee4c36ea7abe7087cb1d276578 Mon Sep 17 00:00:00 2001 From: "Matthew M. Keeler" Date: Sun, 7 Apr 2013 22:21:35 -0500 Subject: [PATCH] Missing parameters when generating blob_raw route --- src/GitList/Controller/BlobController.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/GitList/Controller/BlobController.php b/src/GitList/Controller/BlobController.php index d006fe7..5e19c46 100644 --- a/src/GitList/Controller/BlobController.php +++ b/src/GitList/Controller/BlobController.php @@ -27,8 +27,7 @@ class BlobController implements ControllerProviderInterface if ($fileType !== 'image' && $app['util.repository']->isBinary($file)) { return $app->redirect($app['url_generator']->generate('blob_raw', array( 'repo' => $repo, - 'branch' => $branch, - 'file' => $file, + 'commitishPath' => $commitishPath, ))); }