diff options
author | Steven Barth <steven@midlink.org> | 2008-09-06 16:09:58 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-06 16:09:58 +0000 |
commit | 38bdb5f504d93efe16fdb2e17ad2ebdab7307277 (patch) | |
tree | 2b9a51af0009843988f03d45cd8db639c1740193 | |
parent | f297be56e95819d9d6dc0275f3eee562cf16b6d9 (diff) |
Fixed a whitespace issue
-rw-r--r-- | libs/cbi/luasrc/view/cbi/map.htm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/cbi/luasrc/view/cbi/map.htm b/libs/cbi/luasrc/view/cbi/map.htm index e61f8543a..1238b6adb 100644 --- a/libs/cbi/luasrc/view/cbi/map.htm +++ b/libs/cbi/luasrc/view/cbi/map.htm @@ -18,12 +18,12 @@ $Id$ <div class="cbi-map-descr"><%=self.description%></div> <%- if self._apply then -%><code><%:cbi_applying%>: - <% +<% local fp = self._apply() self._apply = nil local line = fp:read() while line do - write(line) + write(line.."\n") line = fp:read() end fp:close() |