summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-11 23:57:17 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-11 23:57:17 +0300
commit165556c8ddf4d3a036d6d89e680e208d2b435866 (patch)
tree719d66843668bfb37cae499581960d2942c5b3fd /src/utils
parentaf8863d722f06153877d289b939b5ba84713621d (diff)
downloadplus-165556c8ddf4d3a036d6d89e680e208d2b435866.tar.gz
plus-165556c8ddf4d3a036d6d89e680e208d2b435866.tar.bz2
plus-165556c8ddf4d3a036d6d89e680e208d2b435866.tar.xz
plus-165556c8ddf4d3a036d6d89e680e208d2b435866.zip
improve autocomplete sanitization.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/stringutils.cpp6
-rw-r--r--src/utils/stringutils.h2
2 files changed, 8 insertions, 0 deletions
diff --git a/src/utils/stringutils.cpp b/src/utils/stringutils.cpp
index 8e657bb93..224c2a8e8 100644
--- a/src/utils/stringutils.cpp
+++ b/src/utils/stringutils.cpp
@@ -721,3 +721,9 @@ bool isDigit(const std::string &str)
}
return true;
}
+
+void secureChatCommand(std::string &str)
+{
+ if (str[0] == '/' || str[0] == '@' || str[0] == '#')
+ str = "_" + str;
+}
diff --git a/src/utils/stringutils.h b/src/utils/stringutils.h
index 02b1aa031..4a73b3e58 100644
--- a/src/utils/stringutils.h
+++ b/src/utils/stringutils.h
@@ -236,4 +236,6 @@ std::string decodeLinkText(std::string data);
bool isDigit(const std::string &str);
+void secureChatCommand(std::string &str);
+
#endif // UTILS_STRINGUTILS_H