diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-05-11 02:36:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-05-11 02:36:26 +0100 |
commit | 515110f9445d26aa340f2d7ef3f1bb23d1627a9a (patch) | |
tree | 0ac142993e4e0a5bca7cfe70c21d0c0b0030170e /plugins | |
parent | 4a958b86118a24f00ec340de2d8355681aa83d80 (diff) | |
download | prosody-515110f9445d26aa340f2d7ef3f1bb23d1627a9a.tar.gz prosody-515110f9445d26aa340f2d7ef3f1bb23d1627a9a.zip |
mod_http_errors: Fix cyclic dependency - mod_http depends on us now, no need to depend on it (-1 line) (thanks Maranda)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http_errors.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_http_errors.lua b/plugins/mod_http_errors.lua index c7bcbbc1..828216dd 100644 --- a/plugins/mod_http_errors.lua +++ b/plugins/mod_http_errors.lua @@ -1,5 +1,4 @@ module:set_global(); -module:depends("http"); local server = require "net.http.server"; local codes = require "net.http.codes"; |