diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-01-22 16:56:01 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-01-22 16:56:01 +0000 |
commit | 8eb630a6605fed621fd7acd5b0cafa4143149aa8 (patch) | |
tree | 28a18c499ae80ef47344aaf49c3ef0f309ec6855 /plugins/HTTPServer/src/GuiElements.cpp | |
parent | 44213ff453f122f787db10249f2890a26961d3e6 (diff) |
- fixed r3219
- all HTTPServer files are read and created in ProfileDir\HTTPServer. You need to copy your files manually.
git-svn-id: http://svn.miranda-ng.org/main/trunk@3232 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HTTPServer/src/GuiElements.cpp')
-rw-r--r-- | plugins/HTTPServer/src/GuiElements.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HTTPServer/src/GuiElements.cpp b/plugins/HTTPServer/src/GuiElements.cpp index cd303b04a9..fcfdc16a90 100644 --- a/plugins/HTTPServer/src/GuiElements.cpp +++ b/plugins/HTTPServer/src/GuiElements.cpp @@ -95,7 +95,7 @@ void ReplaceAll(string &sSrc, const char * pszReplace, const char * pszNew) { string DBGetString(HANDLE hContact, const char *szModule, const char *szSetting, const char * pszError) {
string ret;
DBVARIANT dbv = {0};
- if (! DBGetContactSetting(hContact, szModule, szSetting, &dbv)) {
+ if (! db_get(hContact, szModule, szSetting, &dbv)) {
if (dbv.type != DBVT_ASCIIZ) {
MessageBox(NULL, "DB: Attempt to get wrong type of value, string", MSG_BOX_TITEL, MB_OK);
ret = pszError;
|