aboutsummaryrefslogtreecommitdiffstats
path: root/prosody
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-03-23 15:00:49 +0100
committerKim Alvefur <zash@zash.se>2013-03-23 15:00:49 +0100
commit0ef3252a3f63991bf901fa996085edef60634830 (patch)
treee41e7939684793668c2787b56999fc83319309f6 /prosody
parent3d20751178f3f22fc0faa3f2dd56e71b88e75dfe (diff)
downloadprosody-0ef3252a3f63991bf901fa996085edef60634830.tar.gz
prosody-0ef3252a3f63991bf901fa996085edef60634830.zip
prosody, prosodyctl: Remove last trace of "core" \o/
Diffstat (limited to 'prosody')
-rwxr-xr-xprosody4
1 files changed, 2 insertions, 2 deletions
diff --git a/prosody b/prosody
index 5802c348..875140de 100755
--- a/prosody
+++ b/prosody
@@ -207,8 +207,8 @@ function init_global_state()
prosody.full_sessions = full_sessions;
prosody.hosts = hosts;
- local data_path = config.get("*", "core", "data_path") or CFG_DATADIR or "data";
- local custom_plugin_paths = config.get("*", "core", "plugin_paths");
+ local data_path = config.get("*", "data_path") or CFG_DATADIR or "data";
+ local custom_plugin_paths = config.get("*", "plugin_paths");
if custom_plugin_paths then
local path_sep = package.config:sub(3,3);
-- path1;path2;path3;defaultpath...