# HG changeset patch # User Waqas Hussain # Date 1294190638 -18000 # Node ID c1b3ecbed6c090b3984b2890ae1edf1521b4c66d # Parent b840c4c77b923db50809fcd304492e31bbad67c1 mod_storage_sql: Removed unnecessary initialization of a variable. diff -r b840c4c77b92 -r c1b3ecbed6c0 plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Wed Jan 05 06:23:17 2011 +0500 +++ b/plugins/mod_storage_sql.lua Wed Jan 05 06:23:58 2011 +0500 @@ -27,7 +27,7 @@ local setmetatable = setmetatable; local json = require "util.json"; -local connection = ...; +local connection; local host,user,store = module.host; local params = module:get_option("sql");