libs/core: fix undefined tostring() in network model

This commit is contained in:
Jo-Philipp Wich 2011-12-05 19:36:50 +00:00
parent 9fa385a7ec
commit df3ee4c199

View file

@ -17,8 +17,11 @@ limitations under the License.
]]--
local type, next, pairs, ipairs, loadfile, table, tonumber, math, i18n
= type, next, pairs, ipairs, loadfile, table, tonumber, math, luci.i18n
local type, next, pairs, ipairs, loadfile, table
= type, next, pairs, ipairs, loadfile, table
local tonumber, tostring, math, i18n
= tonumber, tostring, math, luci.i18n
local require = require