# HG changeset patch # User Waqas Hussain # Date 1264452585 -18000 # Node ID 145d62abdbfc5f7654e185f99dfb41fe5dd14970 # Parent 3d08a6cf57eae1d226274c2be2c2a142d0e1f6d8 mod_privacy: Reduced a function. diff -r 3d08a6cf57ea -r 145d62abdbfc plugins/mod_privacy.lua --- a/plugins/mod_privacy.lua Tue Jan 26 01:47:21 2010 +0500 +++ b/plugins/mod_privacy.lua Tue Jan 26 01:49:45 2010 +0500 @@ -184,13 +184,6 @@ return {"modify", "bad-request", "Not existing list specifed to be deleted."}; end -local function sortByOrder(a, b) - if a.order < b.order then - return true; - end - return false; -end - function createOrReplaceList (privacy_lists, origin, stanza, name, entries, roster) local idx = findNamedList(privacy_lists, name); local bare_jid = origin.username.."@"..origin.host; @@ -277,7 +270,7 @@ list.items[#list.items + 1] = tmp; end - table.sort(list, sortByOrder); + table.sort(list, function(a, b) return a.order < b.order; end); privacy_lists.lists[idx] = list; origin.send(st.reply(stanza));