mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #2948
This commit is contained in:
parent
b595b883d1
commit
93859fdc42
3 changed files with 4 additions and 4 deletions
2
thirdparty/clientform/clientform.py
vendored
2
thirdparty/clientform/clientform.py
vendored
|
|
@ -2455,7 +2455,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 and not self.disabled: self.value = ""
|
||||
if self.value is None and not self.disabled and not self.readonly: self.value = ""
|
||||
self.readonly = True
|
||||
|
||||
def get_labels(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue