diff options
-rw-r--r-- | system/admin/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 68d05c4..12750e2 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -1056,7 +1056,7 @@ func editHandler(res http.ResponseWriter, req *http.Request) { redir := scheme + host + path + "?type=" + t + "&id=" + sid if req.URL.Query().Get("status") == "pending" { - redir += redir + "&status=pending" + redir += "&status=pending" } http.Redirect(res, req, redir, http.StatusFound) |