From e27086410672d7c4efe37aac0505007fe26d6e8b Mon Sep 17 00:00:00 2001 From: mcramer <m.cramer@pixcept.de> Date: Wed, 29 Aug 2012 07:35:16 -0400 Subject: [PATCH] Fixed: onClick attributes changed to valid onclick (lower case) Fixed: password match function blocked tabs incorrectly Fixed: set focus on username input field threw an error if this field did not exist on a page --- interface/web/designer/templates/form_edit.htm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/interface/web/designer/templates/form_edit.htm b/interface/web/designer/templates/form_edit.htm index 38a28c4..72cb0a4 100644 --- a/interface/web/designer/templates/form_edit.htm +++ b/interface/web/designer/templates/form_edit.htm @@ -70,7 +70,7 @@ <tr> <td> </td> <td><input name="Speichern" type="submit" class="button" value="{tmpl_var name='save_txt'}"> - <input name="Abbrechen" type="button" class="button" value="{tmpl_var name='cancel_txt'}" onClick="self.location.href='form_list.php';"> + <input name="Abbrechen" type="button" class="button" value="{tmpl_var name='cancel_txt'}" onclick="self.location.href='form_list.php';"> </td> </tr> </table> -- Gitblit v1.9.1