changeset 388:75aea9752062

mod_muc_log_http: Generate room calendar page even when there is no log data.
author Waqas Hussain <waqas20@gmail.com>
date Mon, 25 Jul 2011 02:21:40 +0500
parents 90d0e90c5b0e
children 60248c463ec3
files mod_muc_log_http/muc_log_http/mod_muc_log_http.lua
diffstat 1 files changed, 8 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Mon Jul 25 02:21:40 2011 +0500
+++ b/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Mon Jul 25 02:21:40 2011 +0500
@@ -316,16 +316,14 @@
 		end
 	end
 
-	if days ~= "" then
-		tmp = html.days.body:gsub("###DAYS_STUFF###", days);
-		tmp = tmp:gsub("###PREVIOUS_ROOM###", previousRoom == "" and node or previousRoom);
-		tmp = tmp:gsub("###NEXT_ROOM###", nextRoom == "" and node or nextRoom);
-		tmp = tmp:gsub("###ROOMS###", rooms);
-		tmp = tmp:gsub("###ROOMTOPIC###", topic);
-		tmp = tmp:gsub("###SINCE###", since);
-		tmp = tmp:gsub("###TO###", to);
-		return tmp:gsub("###JID###", bareRoomJid);
-	end
+	tmp = html.days.body:gsub("###DAYS_STUFF###", days);
+	tmp = tmp:gsub("###PREVIOUS_ROOM###", previousRoom == "" and node or previousRoom);
+	tmp = tmp:gsub("###NEXT_ROOM###", nextRoom == "" and node or nextRoom);
+	tmp = tmp:gsub("###ROOMS###", rooms);
+	tmp = tmp:gsub("###ROOMTOPIC###", topic);
+	tmp = tmp:gsub("###SINCE###", since);
+	tmp = tmp:gsub("###TO###", to);
+	return tmp:gsub("###JID###", bareRoomJid);
 end
 
 local function parseIqStanza(stanza, timeStuff, nick)