20.643
Bearbeitungen
(+ addKomma()) |
(+ appendWithComma(s, a)) |
||
| (Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
| Zeile 120: | Zeile 120: | ||
end | end | ||
function p. | function p.appendWithComma(s, a) | ||
if a ~= nil and a ~= "" then | |||
if s ~= "" then | |||
s = s .. ", " .. a | |||
else | |||
s = a | |||
end | |||
end | end | ||
return s | return s | ||