From 79b28c3a39d0fa0b3b3aee377ff850e4e39bee36 Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tvdijen@gmail.com> Date: Fri, 25 Mar 2016 11:14:20 +0100 Subject: [PATCH] Fix missing curly bracket Fixes: Mar 25 11:06:53 simplesamlphp INFO [0015a148dc] Template: Looking up [{login:processing]: not translated at all. --- modules/core/templates/loginuserpass.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/templates/loginuserpass.php b/modules/core/templates/loginuserpass.php index a87c5d965..8a742292c 100644 --- a/modules/core/templates/loginuserpass.php +++ b/modules/core/templates/loginuserpass.php @@ -124,7 +124,7 @@ if ($this->data['errorcode'] !== null) { <td></td><td></td> <td> <button id="regularsubmit" class="btn" - onclick="this.value='<?php echo $this->t('{login:processing'); ?>'; + onclick="this.value='<?php echo $this->t('{login:processing}'); ?>'; this.disabled=true; this.form.submit(); return true;" tabindex="6"> <?php echo $this->t('{login:login_button}'); ?> </button> -- GitLab