Browse Source

#1577 fix missing SQL query placeholder

tags/v0.9.99
Unknwon 8 years ago
parent
commit
59745c62b4
1 changed files with 5 additions and 2 deletions
  1. 5
    2
      models/repo.go

+ 5
- 2
models/repo.go View File

@@ -957,10 +957,13 @@ func countRepositories(showPrivate bool) int64 {
sess := x.NewSession()

if !showPrivate {
sess.Where("is_private=", false)
sess.Where("is_private=?", false)
}

count, _ := sess.Count(new(Repository))
count, err := sess.Count(new(Repository))
if err != nil {
log.Error(4, "countRepositories: %v", err)
}
return count
}


Loading…
Cancel
Save