This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/allura.git
commit 500981973743ae8cbc9ec2203c9cfabddcd5fe10 Author: Carlos Cruz <[email protected]> AuthorDate: Tue Jun 2 20:06:45 2026 +0000 [#11645] Restore Authentication Link text in email subject --- Allura/allura/model/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Allura/allura/model/auth.py b/Allura/allura/model/auth.py index 87f970189..8fdbcc600 100644 --- a/Allura/allura/model/auth.py +++ b/Allura/allura/model/auth.py @@ -471,7 +471,7 @@ def make_password_reset_url(self): reset_url = h.absurl(f'/auth/forgotten_password/{hash}') return reset_url - def send_email_auth_code(self, return_to='/', subject_tmpl='{site_name} Authentication Code', login_details=None): + def send_email_auth_code(self, return_to='/', subject_tmpl='{site_name} Authentication Link', login_details=None): from allura.controllers.auth import AuthController email_address = self.get_pref('email_address')
