diff --git a/src/app/attributetable/qgsattributetabledialog.cpp b/src/app/attributetable/qgsattributetabledialog.cpp index e3efef3be6b..f0c64cfb98d 100644 --- a/src/app/attributetable/qgsattributetabledialog.cpp +++ b/src/app/attributetable/qgsattributetabledialog.cpp @@ -604,7 +604,7 @@ void QgsAttributeTableDialog::search() else str += " ~ '"; - str += mQuery->displayText(); + str += mQuery->displayText().replace("'", "''"); // escape quotes str += "'"; doSearch( str );