Archived
1
0
This commit is contained in:
Jeff Becker 2018-03-09 09:52:16 -05:00
parent 2adcc73d92
commit 2449cb1adc
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -136,7 +136,11 @@ func (self *nullHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
goto notfound
}
}
template.genUkkoPaginated(self.prefix, self.name, w, self.database, page, isjson, i18n, self.invertPagination)
if page == 0 {
template.genUkko(self.prefix, self.name, w, self.database, isjson, i18n, self.invertPagination)
} else {
template.genUkkoPaginated(self.prefix, self.name, w, self.database, page, isjson, i18n, self.invertPagination)
}
return
}