Mercurial > prosody-modules
diff mod_muc_log_http/muc_log_http/mod_muc_log_http.lua @ 115:5e657a305c88
mod_muc_log_http: Replace remaining <font> tags with CSS equivalents
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 04 Jan 2010 14:20:48 +0000 |
parents | 4c2b35e3d979 |
children | f68a781efe81 |
line wrap: on
line diff
--- a/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua Mon Jan 04 14:10:32 2010 +0000 +++ b/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua Mon Jan 04 14:20:48 2010 +0000 @@ -195,12 +195,12 @@ end end if i < days + 1 then - local tmp = tostring("<font color='#DDDDDD'>"..tostring(i).."</font>"); + local tmp = tostring("<span style='color:#DDDDDD'>"..tostring(i).."</span>"); if dayCallback ~= nil and dayCallback.callback ~= nil then tmp = dayCallback.callback(dayCallback.path, i, month, year); end if tmp == nil then - tmp = tostring("<font color='#DDDDDD'>"..tostring(i).."</font>"); + tmp = tostring("<span style='color:#DDDDDD'>"..tostring(i).."</span>"); else logAvailableForMinimumOneDay = true; end