diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-18 13:15:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-18 13:15:17 +0000 |
commit | 58c50b96dd38bf0427fa973cc27991e485550651 (patch) | |
tree | d42c3bbc91df1b60e695c49a446e41491406d58f /src/modules/chat/chat_opts.cpp | |
parent | 08ed3a95b4f42079eea4d930af81257564b85b97 (diff) |
- returned back the old default settings for Chats/LogDirectory;
- %userid% is being added to a log path, if it doesn't end with \
git-svn-id: http://svn.miranda-ng.org/main/trunk@7718 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/chat/chat_opts.cpp')
-rw-r--r-- | src/modules/chat/chat_opts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/chat/chat_opts.cpp b/src/modules/chat/chat_opts.cpp index 1565f7efa6..eb6caf80e3 100644 --- a/src/modules/chat/chat_opts.cpp +++ b/src/modules/chat/chat_opts.cpp @@ -255,7 +255,7 @@ void LoadGlobalSettings(void) InitSetting(&g_Settings->pszOutgoingNick, "HeaderOutgoing", _T("%n:"));
InitSetting(&g_Settings->pszHighlightWords, "HighlightWords", _T("%m"));
- InitSetting(&g_Settings->pszLogDir, "LogDirectory", _T("%miranda_logpath%\\Chat"));
+ InitSetting(&g_Settings->pszLogDir, "LogDirectory", _T("%miranda_logpath%\\%proto%\\%userid%.log"));
g_Settings->LogIndentEnabled = (db_get_b(NULL, "Chat", "LogIndentEnabled", 1) != 0) ? TRUE : FALSE;
LOGFONT lf;
|