Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

fixed pagination

Cette révision appartient à :
ayame-git 2017-05-03 13:01:20 +03:00
Parent e878811508
révision 2e49fd3969

Voir le fichier

@ -125,7 +125,7 @@ func searchHandler(w http.ResponseWriter, r *http.Request) {
rows, err := dbHandle.Query("select torrent_id, torrent_name, status_id, torrent_hash from torrents "+
"where torrent_name LIKE ? AND category_id LIKE ? AND sub_category_id LIKE ? "+
"ORDER BY torrent_id DESC LIMIT 50 offset ?",
"%"+html.EscapeString(param1)+"%", html.EscapeString(param2)+"%", html.EscapeString(param3)+"%", 50*pagenum-1)
"%"+html.EscapeString(param1)+"%", html.EscapeString(param2)+"%", html.EscapeString(param3)+"%", 50*(pagenum-1))
for rows.Next() {
var id, name, hash, magnet string
var status int