minor update regarding last commit

This commit is contained in:
Miroslav Stampar 2011-02-06 20:15:03 +00:00
parent 6191a7f26f
commit caaac72029
8 changed files with 8 additions and 8 deletions

View File

@ -27,7 +27,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("'")
if index == -1:
raise sqlmapSyntaxException, "Unenclosed ' in '%s'" % expression
break
lastIndex = firstIndex + index
old = "'%s'" % expression[firstIndex:lastIndex]

View File

@ -29,7 +29,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("'")
if index == -1:
raise sqlmapSyntaxException, "Unenclosed ' in '%s'" % expression
break
lastIndex = firstIndex + index
old = "'%s'" % expression[firstIndex:lastIndex]

View File

@ -27,7 +27,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("'")
if index == -1:
raise sqlmapSyntaxException("Unenclosed ' in '%s'" % expression)
break
lastIndex = firstIndex + index
old = "'%s'" % expression[firstIndex:lastIndex]

View File

@ -27,7 +27,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("'")
if index == -1:
raise sqlmapSyntaxException, "Unenclosed ' in '%s'" % expression
break
lastIndex = firstIndex + index
old = "'%s'" % expression[firstIndex:lastIndex]

View File

@ -26,7 +26,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("'")
if index == -1:
raise sqlmapSyntaxException, "Unenclosed ' in '%s'" % expression
break
lastIndex = firstIndex + index
old = "'%s'" % expression[firstIndex:lastIndex]

View File

@ -27,7 +27,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("'")
if index == -1:
raise sqlmapSyntaxException, "Unenclosed ' in '%s'" % expression
break
lastIndex = firstIndex + index
old = "'%s'" % expression[firstIndex:lastIndex]

View File

@ -30,7 +30,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("''")
if index == -1:
raise sqlmapSyntaxException, "Unenclosed ' in '%s'" % expression.replace("''", "'")
break
lastIndex = firstIndex + index
old = "''%s''" % expression[firstIndex:lastIndex]

View File

@ -27,7 +27,7 @@ class Syntax(GenericSyntax):
index = expression[firstIndex:].find("'")
if index == -1:
raise sqlmapSyntaxException("Unenclosed ' in '%s'" % expression)
break
lastIndex = firstIndex + index
old = "'%s'" % expression[firstIndex:lastIndex]