From afb5bce51b36ee4a5096e38b07bf6336b65c302f Mon Sep 17 00:00:00 2001 From: JanluOfficial Date: Fri, 1 Aug 2025 21:39:32 +0200 Subject: [PATCH] Change "Back" to "Acknowledge" --- copyparty/httpcli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/copyparty/httpcli.py b/copyparty/httpcli.py index 126dc1d9..70a1982a 100644 --- a/copyparty/httpcli.py +++ b/copyparty/httpcli.py @@ -2940,7 +2940,7 @@ class HttpCli(object): msg = "new password OK" redir = (self.args.SRS + "?h") if ok else "" - h2 = 'Back' + h2 = 'Acknowledge' html = self.j2s("msg", h1=msg, h2=h2, redir=redir) self.reply(html.encode("utf-8")) return True @@ -2969,7 +2969,7 @@ class HttpCli(object): dst += "_=1#" + html_escape(uhash, True, True) _, msg = self.get_pwd_cookie(pwd) - html = self.j2s("msg", h1=msg, h2='Back', redir=dst) + html = self.j2s("msg", h1=msg, h2='Acknowledge', redir=dst) self.reply(html.encode("utf-8")) return True @@ -2983,7 +2983,7 @@ class HttpCli(object): self.get_pwd_cookie("x") dst = self.args.SRS + "?h" - h2 = 'Back' + h2 = 'Acknowledge' html = self.j2s("msg", h1="ok bye", h2=h2, redir=dst) self.reply(html.encode("utf-8")) return True