Zeile 24: |
Zeile 24: |
| i = i + 1 | | i = i + 1 |
| end | | end |
− |
| + | local res = {} |
| + | for k,_ in pairs(AuthorList) do |
| + | res[#res+1] = k |
| + | end |
| local n = 1 | | local n = 1 |
− | while n <= table.getn(AuthorList) | + | while n <= table.getn(res) |
| do | | do |
− | ReturnString = ReturnString .. AuthorList[n] .. "<br>" | + | ReturnString = ReturnString .. res[n] .. "<br>" |
| n = n +1 | | n = n +1 |
| end | | end |