Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Update themeToggle.go

Cette révision appartient à :
kilo 2017-10-29 01:01:50 +02:00 révisé par GitHub
Parent fd2b094034
révision 38061f3521
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

@ -42,7 +42,9 @@ func toggleThemeHandler(c *gin.Context) {
http.SetCookie(c.Writer, &http.Cookie{Name: "theme2", Value: theme, Domain: getDomainName(), Path: "/", Expires: timeHelper.FewDaysLater(365)})
//Redirect user to page he was in beforehand
c.Redirect(http.StatusSeeOther, c.Param("redirect") + "#footer")
if c.Query("no_redirect") == "" {
c.Redirect(http.StatusSeeOther, c.Param("redirect") + "#footer")
}
return
}