diff options
author | dartraiden <wowemuh@gmail.com> | 2022-06-20 22:17:09 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-06-20 22:17:09 +0300 |
commit | 7a63caf8e9bd3b47fe4378c17ac01b00e678228d (patch) | |
tree | 45a18a406ce61eb9609d612844e1c4d78c21d4b5 | |
parent | e73cfd2ccd26beef84cffa8bad45a591f635923b (diff) |
Fix option name
-rw-r--r-- | protocols/JabberG/src/jabber_opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_opt.cpp b/protocols/JabberG/src/jabber_opt.cpp index 08b4d31241..da80244154 100644 --- a/protocols/JabberG/src/jabber_opt.cpp +++ b/protocols/JabberG/src/jabber_opt.cpp @@ -724,7 +724,7 @@ public: m_options.AddOption(LPGENW("Other"), LPGENW("Embrace picture URLs with [img]"), m_proto->m_bEmbraceUrls);
m_options.AddOption(LPGENW("Other"), LPGENW("Ignore server roster (groups and nick names)"), m_proto->m_bIgnoreRoster);
- m_options.AddOption(LPGENW("Security"), LPGENW("Allow local time & timezone requests (XEP-0202)"), m_proto->m_bAllowTimeReplies);
+ m_options.AddOption(LPGENW("Security"), LPGENW("Allow local time and timezone requests (XEP-0202)"), m_proto->m_bAllowTimeReplies);
m_options.AddOption(LPGENW("Security"), LPGENW("Allow servers to request version (XEP-0092)"), m_proto->m_bAllowVersionRequests);
m_options.AddOption(LPGENW("Security"), LPGENW("Show information about operating system in version replies"), m_proto->m_bShowOSVersion);
m_options.AddOption(LPGENW("Security"), LPGENW("Accept only in band incoming filetransfers (don't disclose own IP)"), m_proto->m_bBsOnlyIBB);
|