From 4dd6887ea43f1e999aa2319ed784d15e70f69fe1 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 19 Aug 2014 22:48:18 +0200 Subject: [PATCH] Fix for an Issue #793 --- thirdparty/clientform/clientform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/clientform/clientform.py b/thirdparty/clientform/clientform.py index 2a4f948f3..0169c5aaf 100644 --- a/thirdparty/clientform/clientform.py +++ b/thirdparty/clientform/clientform.py @@ -2450,7 +2450,7 @@ class SubmitControl(ScalarControl): # IE5 defaults SUBMIT value to "Submit Query"; Firebird 0.6 leaves it # blank, Konqueror 3.1 defaults to "Submit". HTML spec. doesn't seem # to define this. - if self.value is None: self.value = "" + if self.value is None and not self.disabled: self.value = "" self.readonly = True def get_labels(self):