Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601eb1e commit f49657eCopy full SHA for f49657e
2 files changed
plugins/dbms/maxdb/syntax.py
@@ -12,5 +12,5 @@ def __init__(self):
12
GenericSyntax.__init__(self)
13
14
@staticmethod
15
- def escape(expression):
+ def escape(expression, quote=True):
16
return expression
plugins/generic/syntax.py
@@ -16,7 +16,7 @@ def __init__(self):
pass
17
18
19
20
errMsg = "'escape' method must be defined "
21
errMsg += "inside the specific DBMS plugin"
22
raise SqlmapUndefinedMethod(errMsg)
0 commit comments