Software /
code /
prosody-modules
Changeset
2872:8f17da746479
mod_data_access: Fix typo in comment [codespell]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 04 Feb 2018 15:59:52 +0100 |
parents | 2871:c3317f61f3f9 |
children | 2873:9e693d433a41 |
files | mod_data_access/mod_data_access.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_data_access/mod_data_access.lua Sun Feb 04 15:58:09 2018 +0100 +++ b/mod_data_access/mod_data_access.lua Sun Feb 04 15:59:52 2018 +0100 @@ -84,7 +84,7 @@ end if user_host ~= path_items[1] or user_node ~= path_items[2] then - -- To only give admins acces to anything, move the inside of this block after authz + -- To only give admins access to anything, move the inside of this block after authz --module:log("debug", "%s wants access to %s@%s[%s], is admin?", authed_user, p_user, p_host, p_store) if not is_admin(authed_user, p_host) then return 403;