diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-02 02:20:11 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-02 02:20:11 -0700 |
commit | 759506ca799c443402fed9c6413a8b49406e197f (patch) | |
tree | be9b5b86b7da34a150e228a817335d368b8705ca | |
parent | c2cf55f3d10cfc675dd90f81361234152e2b2f92 (diff) |
string addition mistake
-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) |