implement disable sub repository detection option

This commit is contained in:
Sebastian Sdorra
2013-01-20 11:41:33 +01:00
parent 81d78b6fa8
commit cc81411523
5 changed files with 30 additions and 6 deletions

View File

@@ -385,7 +385,10 @@ public class GitBrowseCommand extends AbstractGitCommand
String path = request.getPath();
appendSubModules(files, repo, revId, path);
if (!request.isDisableSubRepositoryDetection())
{
appendSubModules(files, repo, revId, path);
}
if (Util.isEmpty(path))
{