diff options
Diffstat (limited to 'src/modules/plugins')
-rw-r--r-- | src/modules/plugins/newplugins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/plugins/newplugins.cpp b/src/modules/plugins/newplugins.cpp index 4c971519c6..753720efb1 100644 --- a/src/modules/plugins/newplugins.cpp +++ b/src/modules/plugins/newplugins.cpp @@ -476,7 +476,7 @@ void SetPluginOnWhiteList(const TCHAR* pluginname, int allow) char plugName[MAX_PATH];
strncpy(plugName, StrConvA(pluginname), SIZEOF(plugName));
strlwr(plugName);
- DBWriteContactSettingByte(NULL, PLUGINDISABLELIST, plugName, allow == 0);
+ db_set_b(NULL, PLUGINDISABLELIST, plugName, allow == 0);
}
// returns 1 if the plugin should be enabled within this profile, filename is always lower case
|