mod_storage_sql: Remove obsolete comment

This commit is contained in:
Matthew Wild 2012-09-19 12:09:27 +01:00
parent 6d61a3834d
commit 3b96fac749

View file

@ -374,7 +374,7 @@ function driver:open(store, typ)
return nil, "unsupported-store";
end
function driver:stores(username) -- Not to be confused with the list store type
function driver:stores(username)
local sql = "SELECT DISTINCT `store` FROM `prosody` WHERE `host`=? AND `user`" ..
(username == true and "!=?" or "=?");
if username == true or not username then