diff options
author | Kim Alvefur <zash@zash.se> | 2014-03-09 23:47:53 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-03-09 23:47:53 +0100 |
commit | 9833b51da4e36251d94290577b504c9f8140d64d (patch) | |
tree | e200875dd171732b5fcd8da80a7b225b72c89491 /util | |
parent | 4996a4724e87130c36f8d90b6cdf3628d39cebd8 (diff) | |
parent | a8869fb51619fe773f91e95e3f82e0eb437f9572 (diff) | |
download | prosody-9833b51da4e36251d94290577b504c9f8140d64d.tar.gz prosody-9833b51da4e36251d94290577b504c9f8140d64d.zip |
Merge 0.9->0.10
Diffstat (limited to 'util')
-rw-r--r-- | util/pluginloader.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/pluginloader.lua b/util/pluginloader.lua index b894f527..b9b3e207 100644 --- a/util/pluginloader.lua +++ b/util/pluginloader.lua @@ -39,10 +39,10 @@ function load_resource(plugin, resource) resource = resource or "mod_"..plugin..".lua"; local names = { - "mod_"..plugin.."/"..plugin.."/"..resource; -- mod_hello/hello/mod_hello.lua - "mod_"..plugin.."/"..resource; -- mod_hello/mod_hello.lua - plugin.."/"..resource; -- hello/mod_hello.lua - resource; -- mod_hello.lua + "mod_"..plugin..dir_sep..plugin..dir_sep..resource; -- mod_hello/hello/mod_hello.lua + "mod_"..plugin..dir_sep..resource; -- mod_hello/mod_hello.lua + plugin..dir_sep..resource; -- hello/mod_hello.lua + resource; -- mod_hello.lua }; return load_file(names); |