#1577 fix missing SQL query placeholder
This commit is contained in:
parent
0ad5f51059
commit
59745c62b4
|
@ -957,10 +957,13 @@ func countRepositories(showPrivate bool) int64 {
|
||||||
sess := x.NewSession()
|
sess := x.NewSession()
|
||||||
|
|
||||||
if !showPrivate {
|
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
|
return count
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue