Skip to content

Commit ab36e5a

Browse files
committed
Fix for an Issue sqlmapproject#597
1 parent bc29bf6 commit ab36e5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/generic/databases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def getTables(self, bruteForce=None):
281281

282282
for db, table in filterPairValues(values):
283283
db = safeSQLIdentificatorNaming(db)
284-
table = safeSQLIdentificatorNaming(table, True)
284+
table = safeSQLIdentificatorNaming(unArrayizeValue(table), True)
285285

286286
if db not in kb.data.cachedTables:
287287
kb.data.cachedTables[db] = [table]

0 commit comments

Comments
 (0)