Module:Str find word: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 279:
-- concat the sYeslist (= all hit words; from 2 tables)
if bANDresult then
sYeslist = sYeslist .. table.concat(tANDhits, tArgs.sSep)
end
 
if #tORhits > 0 then
if #tANDhits > 0 then
sYeslist = sYeslist .. tArgs.sSep
end
sYeslist = sYeslist .. table.concat(tORhits, tArgs.sSep)
end
end