From: Steven Barth Date: Sun, 17 Aug 2008 10:51:56 +0000 (+0000) Subject: Fixed a typo X-Git-Tag: 0.8.0~390 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=6d430930a3326d5ea1f92c46de5565dd05cd2030 Fixed a typo --- diff --git a/modules/admin-core/luasrc/tools/webadmin.lua b/modules/admin-core/luasrc/tools/webadmin.lua index fe725d42d..1fda11eea 100644 --- a/modules/admin-core/luasrc/tools/webadmin.lua +++ b/modules/admin-core/luasrc/tools/webadmin.lua @@ -45,7 +45,7 @@ function date_format(secs) end if hour > 24 then - days = math.floor(hours / 24) + days = math.floor(hour / 24) hour = hour % 24 end