summaryrefslogtreecommitdiffhomepage
path: root/libs/web/luasrc/http.lua
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-06-29 16:15:26 +0000
committerSteven Barth <steven@midlink.org>2008-06-29 16:15:26 +0000
commit66ec29f2437b813a5aaf9d246e255fcc660b30cc (patch)
treedbe99456fff22bdfecb904213a30d66984fa3842 /libs/web/luasrc/http.lua
parent50039c134e104632a7dfe10c9d39cf121aff9a0b (diff)
* libs/core: Moved ltn12 inside LuCI to avoid package conflicts with luasocket
Diffstat (limited to 'libs/web/luasrc/http.lua')
-rw-r--r--libs/web/luasrc/http.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/http.lua b/libs/web/luasrc/http.lua
index f37d67343..7a0a10232 100644
--- a/libs/web/luasrc/http.lua
+++ b/libs/web/luasrc/http.lua
@@ -25,7 +25,7 @@ limitations under the License.
]]--
module("luci.http", package.seeall)
-require("ltn12")
+local ltn12 = require("luci.ltn12")
require("luci.http.protocol")
require("luci.util")