diff options
| author | 2010-08-04 17:02:15 -0400 | |
|---|---|---|
| committer | 2010-08-04 17:02:15 -0400 | |
| commit | fe156507953a78116cda63f83c22781b3bff241e (patch) | |
| tree | ed74d9d8d861da6f0eaada94c5183dc8948648a1 /src/modules/extra/m_pgsql.cpp | |
| parent | Send error message to users on failed join (diff) | |
Fix $md5pass and $sha256pass in SQL queries
Diffstat (limited to 'src/modules/extra/m_pgsql.cpp')
| -rw-r--r-- | src/modules/extra/m_pgsql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp index 655007ea3..0ea1e0b6a 100644 --- a/src/modules/extra/m_pgsql.cpp +++ b/src/modules/extra/m_pgsql.cpp @@ -429,7 +429,7 @@ restart: { std::string field; i++; - while (i < q.length() && isalpha(q[i])) + while (i < q.length() && isalnum(q[i])) field.push_back(q[i++]); i--; |
