diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-17 22:28:48 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-17 22:28:48 +0200 |
commit | 8f7f8d673ccf1ee7d115526d6bd7a805e0eed1d7 (patch) | |
tree | 65fa5a9caa2b6eb979d751ac6a7cfb369174e1d8 /plugins/mod_storage_sql1.lua | |
parent | a92b3b499c6319f0510af1772c92ea6637a456af (diff) | |
parent | c6048a7cb4097d24b5c28a29247ba7175e00ea37 (diff) | |
download | prosody-8f7f8d673ccf1ee7d115526d6bd7a805e0eed1d7.tar.gz prosody-8f7f8d673ccf1ee7d115526d6bd7a805e0eed1d7.zip |
Merge with Link Mauve
Diffstat (limited to 'plugins/mod_storage_sql1.lua')
-rw-r--r-- | plugins/mod_storage_sql1.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_storage_sql1.lua b/plugins/mod_storage_sql1.lua index a5bb5bfa..e1041bca 100644 --- a/plugins/mod_storage_sql1.lua +++ b/plugins/mod_storage_sql1.lua @@ -130,7 +130,7 @@ local function create_table() module:log("info", "Database table automatically upgraded"); else module:log("error", "Failed to upgrade database schema (%s), please see " - .."http://prosody.im/doc/mysql for help", + .."https://prosody.im/doc/mysql for help", err or "unknown error"); end end @@ -139,7 +139,7 @@ local function create_table() end elseif params.driver ~= "SQLite3" then -- SQLite normally fails to prepare for existing table module:log("warn", "Prosody was not able to automatically check/create the database table (%s), " - .."see http://prosody.im/doc/modules/mod_storage_sql#table_management for help.", + .."see https://prosody.im/doc/modules/mod_storage_sql#table_management for help.", err or "unknown error"); end end @@ -151,7 +151,7 @@ do -- process options to get a db connection if not ok then package.loaded["DBI"] = {}; module:log("error", "Failed to load the LuaDBI library for accessing SQL databases: %s", DBI); - module:log("error", "More information on installing LuaDBI can be found at http://prosody.im/doc/depends#luadbi"); + module:log("error", "More information on installing LuaDBI can be found at https://prosody.im/doc/depends#luadbi"); end prosody.lock_globals(); if not ok or not DBI.Connect then |