From d2819c177501fc03d12d3149a73ad5a6f331efe2 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 3 Mar 2015 20:27:35 +0100 Subject: util.helpers: Fix order of functions using each other [fixes 00412b36166f] --- util/helpers.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'util/helpers.lua') diff --git a/util/helpers.lua b/util/helpers.lua index 083f651b..bf76d258 100644 --- a/util/helpers.lua +++ b/util/helpers.lua @@ -12,14 +12,6 @@ local debug = require "util.debug"; local log = require "util.logger".init("util.debug"); -local function log_host_events(host) - return log_events(prosody.hosts[host].events, host); -end - -local function revert_log_host_events(host) - return revert_log_events(prosody.hosts[host].events); -end - local function log_events(events, name, logger) local f = events.fire_event; if not f then @@ -39,6 +31,14 @@ local function revert_log_events(events) events.fire_event, events[events.fire_event] = events[events.fire_event], nil; -- :)) end +local function log_host_events(host) + return log_events(prosody.hosts[host].events, host); +end + +local function revert_log_host_events(host) + return revert_log_events(prosody.hosts[host].events); +end + local function show_events(events, specific_event) local event_handlers = events._handlers; local events_array = {}; -- cgit v1.2.3