From: Manuel Munz Date: Wed, 2 Nov 2011 10:34:04 +0000 (+0000) Subject: modules/freifunk: Fix error on freifunk/adminindex page when running on the Developme... X-Git-Tag: 0.11.0~1410 X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=16c26a51547ac5ba771af73b9f3b73e7639146aa;hp=0ef557b15c766817ed2e9f90634153cde121205e;p=project%2Fluci.git modules/freifunk: Fix error on freifunk/adminindex page when running on the Development Environment --- diff --git a/modules/freifunk/luasrc/view/freifunk/adminindex.htm b/modules/freifunk/luasrc/view/freifunk/adminindex.htm index 4eed2aa95..4fcc16ccd 100644 --- a/modules/freifunk/luasrc/view/freifunk/adminindex.htm +++ b/modules/freifunk/luasrc/view/freifunk/adminindex.htm @@ -8,6 +8,15 @@ local latitude = uci:get_first ("system", "system", "latitude") local longitude = uci:get_first ("system", "system", "longitude") local location = uci:get_first ("system", "system", "location") local basicsurl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "freifunk", "basics") +local nickname, name, mail +if not contact then + nickname, name, mail = "" +else + nickname = contact.nickname + name = contact.name + mail = contact.mail +end + luci.i18n.loadc("freifunk") %> @@ -23,7 +32,7 @@ luci.i18n.loadc("freifunk") <%end%>

-<% if not (contact.nickname and contact.name and contact.mail) then%> +<% if not (nickname and name and mail) then%>

<%:Contact information is incomplete. Please go to%> <%:Contact%> <%:and fill out all required fields.%>