Changeset

129:0f119bece309

Fixed: Some modules did not return anything
author Waqas Hussain <waqas20@gmail.com>
date Thu, 23 Oct 2008 18:42:29 +0500
parents 128:77a1778b16e8
children 130:907cff6b5359
files core/offlinemessage.lua util/datamanager.lua
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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