diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-07-22 20:33:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-07-22 20:33:04 +0000 |
commit | 70b119b8eeda1a256eb54cd58c5070cf4b5a1b56 (patch) | |
tree | 115a24002dae0cdb9b450720867113109a52165a /libs/web/luasrc/template.lua | |
parent | 33b8cf5506ca070862a2bbb13925b0d8f48b138d (diff) |
* luci/libs/core: added inline documentation to luci.util, reordered and renamed functions to logical groups
* luci/libs/web: rename dump() to get_bytecode()
Diffstat (limited to 'libs/web/luasrc/template.lua')
-rw-r--r-- | libs/web/luasrc/template.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/template.lua b/libs/web/luasrc/template.lua index 18abf6df81..dc0ccf6201 100644 --- a/libs/web/luasrc/template.lua +++ b/libs/web/luasrc/template.lua @@ -180,7 +180,7 @@ function Template.__init__(self, name) if source then local compiled, err = compile(source) - luci.fs.writefile(compiledfile, luci.util.dump(compiled)) + luci.fs.writefile(compiledfile, luci.util.get_bytecode(compiled)) self.template = compiled end else |