diff --git a/modules/template/template.go b/modules/template/template.go
index 8d602760a..37c7d7935 100644
--- a/modules/template/template.go
+++ b/modules/template/template.go
@@ -25,8 +25,8 @@ var Funcs template.FuncMap = map[string]interface{}{
"GoVer": func() string {
return strings.Title(runtime.Version())
},
- "Protocol": func() string {
- return string(setting.Protocol)
+ "UseHTTPS": func() bool {
+ return strings.HasPrefix(setting.AppUrl, "https")
},
"AppName": func() string {
return setting.AppName
diff --git a/routers/repo/pull.go b/routers/repo/pull.go
index ee66da73b..d7b4828a9 100644
--- a/routers/repo/pull.go
+++ b/routers/repo/pull.go
@@ -448,7 +448,7 @@ func ParseCompareInfo(ctx *middleware.Context) (*models.User, *models.Repository
// Check if current user has fork of repository.
headRepo, has := models.HasForkedRepo(headUser.Id, repo.ID)
- if !has || !ctx.User.IsAdminOfRepo(headRepo) {
+ if !has || (!ctx.User.IsAdminOfRepo(headRepo) && !ctx.User.IsAdmin) {
ctx.Handle(404, "HasForkedRepo", nil)
return nil, nil, nil, nil, "", ""
}
diff --git a/templates/repo/bare.tmpl b/templates/repo/bare.tmpl
index e57420d8e..af839cbaf 100644
--- a/templates/repo/bare.tmpl
+++ b/templates/repo/bare.tmpl
@@ -22,7 +22,7 @@
{{end}}
{{end}}