mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-06-15 02:23:07 +03:00
Fix for an Issue #793
This commit is contained in:
parent
5a05271097
commit
4dd6887ea4
2
thirdparty/clientform/clientform.py
vendored
2
thirdparty/clientform/clientform.py
vendored
|
@ -2450,7 +2450,7 @@ class SubmitControl(ScalarControl):
|
||||||
# IE5 defaults SUBMIT value to "Submit Query"; Firebird 0.6 leaves it
|
# IE5 defaults SUBMIT value to "Submit Query"; Firebird 0.6 leaves it
|
||||||
# blank, Konqueror 3.1 defaults to "Submit". HTML spec. doesn't seem
|
# blank, Konqueror 3.1 defaults to "Submit". HTML spec. doesn't seem
|
||||||
# to define this.
|
# to define this.
|
||||||
if self.value is None: self.value = ""
|
if self.value is None and not self.disabled: self.value = ""
|
||||||
self.readonly = True
|
self.readonly = True
|
||||||
|
|
||||||
def get_labels(self):
|
def get_labels(self):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user