Changeset 8051

Show
Ignore:
Timestamp:
12/05/11 20:36:50 (19 months ago)
Author:
jow
Message:

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

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • luci/trunk/libs/core/luasrc/model/network.lua

    r8048 r8051  
    1818]]-- 
    1919 
    20 local type, next, pairs, ipairs, loadfile, table, tonumber, math, i18n 
    21     = type, next, pairs, ipairs, loadfile, table, tonumber, math, luci.i18n 
     20local type, next, pairs, ipairs, loadfile, table 
     21    = type, next, pairs, ipairs, loadfile, table 
     22 
     23local tonumber, tostring, math, i18n 
     24    = tonumber, tostring, math, luci.i18n 
    2225 
    2326local require = require