diff options
author | Steven Barth <steven@midlink.org> | 2008-07-19 15:49:24 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-19 15:49:24 +0000 |
commit | 4aaa2afcc19e92955b650c9c2a2bce3779819cca (patch) | |
tree | 03e6672318ee7ffc8b61276f21d5ca8728f032b7 /applications | |
parent | 3da2286b3dd7c48a3bb8866f229a00d862505625 (diff) |
applications/luci-olsr: Remove work-arounds of a former template-bug
Diffstat (limited to 'applications')
3 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-olsr/luasrc/view/status-olsr/index.htm b/applications/luci-olsr/luasrc/view/status-olsr/index.htm index 659d1a1a4..7d85e932b 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/index.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/index.htm @@ -46,7 +46,7 @@ $Id$ <td><%=link["Local IP"]%></td> <td><%=link.LinkQuality%></td> <td><%=link.NLQ%></td> -<td style="background-color:<%=color%>"><%=string.format("%%.3f", link.ETX)%></td> +<td style="background-color:<%=color%>"><%=string.format("%.3f", link.ETX)%></td> </tr> <% end %> </table> diff --git a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm index 6f5b61edb..253a77126 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm @@ -42,7 +42,7 @@ $Id$ <td><%=route.Gateway%></td> <td><%=route.Interface%></td> <td><%=route.Metric%></td> -<td style="background-color:<%=color%>"><%=string.format("%%.3f", tonumber(route.ETX) or 0)%></td> +<td style="background-color:<%=color%>"><%=string.format("%.3f", tonumber(route.ETX) or 0)%></td> </tr> <% end %> </table> diff --git a/applications/luci-olsr/luasrc/view/status-olsr/topology.htm b/applications/luci-olsr/luasrc/view/status-olsr/topology.htm index bc699b23c..3b705f088 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/topology.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/topology.htm @@ -33,7 +33,7 @@ $Id$ <td><a href="http://<%=route["Last hop IP"]%>"><%=route["Last hop IP"]%></a></td> <td><%=route.LQ%></td> <td><%=route.ILQ%></td> -<td><%=string.format("%%.3f", tonumber(route.ETX) or 0)%></td> +<td><%=string.format("%.3f", tonumber(route.ETX) or 0)%></td> </tr> <% end %> </table> |