Merge pull request #42 from mathiasertl/master
Fix includes for various modules
This commit is contained in:
commit
750170f27d
|
@ -7,8 +7,9 @@
|
|||
-author('eric@ohmforce.com').
|
||||
-include("ejabberd.hrl").
|
||||
-include("jlib.hrl").
|
||||
-include("mod_pubsub/pubsub.hrl").
|
||||
-include("web/ejabberd_http.hrl").
|
||||
-include("pubsub.hrl").
|
||||
-include("ejabberd_http.hrl").
|
||||
-include("logger.hrl").
|
||||
-export([process/2]).
|
||||
|
||||
process([Domain,User|_]=LocalPath, #request{auth = Auth} = Request)->
|
||||
|
|
|
@ -7,8 +7,9 @@
|
|||
-author('eric@ohmforce.com').
|
||||
-include("ejabberd.hrl").
|
||||
-include("jlib.hrl").
|
||||
-include("mod_pubsub/pubsub.hrl").
|
||||
-include("web/ejabberd_http.hrl").
|
||||
-include("pubsub.hrl").
|
||||
-include("ejabberd_http.hrl").
|
||||
-include("logger.hrl").
|
||||
-export([process/2]).
|
||||
|
||||
process([Domain,User|_]=LocalPath, #request{auth = Auth} = Request)->
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
-include("ejabberd.hrl").
|
||||
-include("jlib.hrl").
|
||||
-include("logger.hrl").
|
||||
|
||||
-define(DICT, dict).
|
||||
|
||||
|
|
|
@ -84,6 +84,7 @@
|
|||
|
||||
-include("ejabberd.hrl").
|
||||
-include("jlib.hrl").
|
||||
-include("logger.hrl").
|
||||
|
||||
-record(state, {host,
|
||||
sessions,
|
||||
|
|
|
@ -15,8 +15,9 @@
|
|||
|
||||
-include("ejabberd.hrl").
|
||||
-include("jlib.hrl").
|
||||
-include("web/ejabberd_http.hrl").
|
||||
-include("web/ejabberd_web_admin.hrl"). %for all the defines
|
||||
-include("logger.hrl").
|
||||
-include("ejabberd_http.hrl").
|
||||
-include("ejabberd_web_admin.hrl"). %for all the defines
|
||||
|
||||
-define(LINK(L) , "/archive/" ++ L).
|
||||
%-define(P(Els), ?XE("p", Els)).
|
||||
|
|
|
@ -20,8 +20,10 @@
|
|||
|
||||
-include("ejabberd_commands.hrl").
|
||||
-include("ejabberd.hrl").
|
||||
-include("web/ejabberd_http.hrl").
|
||||
-include("web/ejabberd_web_admin.hrl").
|
||||
-include("ejabberd_http.hrl").
|
||||
-include("ejabberd_web_admin.hrl").
|
||||
-include("logger.hrl").
|
||||
-include("xml.hrl").
|
||||
|
||||
-record(task, {taskid, timerref, host, task}).
|
||||
|
||||
|
|
|
@ -19,8 +19,9 @@
|
|||
|
||||
-include("ejabberd.hrl").
|
||||
-include("jlib.hrl").
|
||||
-include("web/ejabberd_http.hrl").
|
||||
-include("mod_muc/mod_muc_room.hrl").
|
||||
-include("ejabberd_http.hrl").
|
||||
-include("mod_muc_room.hrl").
|
||||
-include("logger.hrl").
|
||||
-include_lib("kernel/include/file.hrl").
|
||||
|
||||
-define(PROCNAME, mod_muc_log_http).
|
||||
|
|
|
@ -87,6 +87,7 @@
|
|||
|
||||
-include("ejabberd.hrl").
|
||||
-include("jlib.hrl").
|
||||
-include("logger.hrl").
|
||||
|
||||
-record(profile, {us, fields}).
|
||||
|
||||
|
|
Loading…
Reference in New Issue