Software /
code /
prosody
Changeset
1361:4e56889c33e1
modulemanager: Removed unused function get_module_filename(name)
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sun, 14 Jun 2009 21:06:43 +0500 |
parents | 1360:857034905016 |
children | 1362:75c39ac6efa0 |
files | core/modulemanager.lua |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/core/modulemanager.lua Sun Jun 14 21:03:59 2009 +0500 +++ b/core/modulemanager.lua Sun Jun 14 21:06:43 2009 +0500 @@ -268,12 +268,6 @@ end end -local _modulepath = { plugin_dir, "mod_", nil, ".lua"}; -function get_module_filename(name) - _modulepath[3] = name; - return t_concat(_modulepath); -end - ----- API functions exposed to modules ----------- -- Must all be in api.*