# HG changeset patch
# User Waqas Hussain <waqas20@gmail.com>
# Date 1224769349 -18000
# Node ID 0f119bece3097d751cb84048bd08e9875d453609
# Parent  77a1778b16e81874d2870334f4076a10d3f452fa
Fixed: Some modules did not return anything

diff -r 77a1778b16e8 -r 0f119bece309 core/offlinemessage.lua
--- a/core/offlinemessage.lua	Thu Oct 23 18:36:10 2008 +0500
+++ b/core/offlinemessage.lua	Thu Oct 23 18:42:29 2008 +0500
@@ -11,3 +11,5 @@
 	t_insert(offlinedata, stanza);
 	return datamanager.store(user, host, "offlinemsg", offlinedata);
 end
+
+return _M;
\ No newline at end of file
diff -r 77a1778b16e8 -r 0f119bece309 util/datamanager.lua
--- a/util/datamanager.lua	Thu Oct 23 18:36:10 2008 +0500
+++ b/util/datamanager.lua	Thu Oct 23 18:42:29 2008 +0500
@@ -93,3 +93,4 @@
 	return true;
 end
 
+return _M;
\ No newline at end of file