Changeset 8640 for branches/gajim_0.11.1/src/common
- Timestamp:
- 08/30/07 22:59:37 (15 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.1/src/common/logger.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.1/src/common/logger.py
r8617 r8640 496 496 else: # user just typed something, we search in message column 497 497 where_sql = self._build_contact_where(account, jid) 498 like_sql = '%' + query + '%'498 like_sql = '%' + query.replace("'", "''") + '%' 499 499 self.cur.execute(''' 500 500 SELECT contact_name, time, kind, show, message, subject FROM logs
