removed some / at the end of some URLs to be consistent with other URLs

This commit is contained in:
Fabien Potencier
2012-07-07 08:25:49 +02:00
parent 810043015b
commit e4b7a3fe8b
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<?php
$app->get('{repo}/blob/{branch}/{file}/', function($repo, $branch, $file) use($app) {
$app->get('{repo}/blob/{branch}/{file}', function($repo, $branch, $file) use($app) {
$repository = $app['git']->getRepository($app['git.repos'] . $repo);
$blob = $repository->getBlob("$branch:'$file'");
$breadcrumbs = $app['utils']->getBreadcrumbs($file);