mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-08 23:04:35 +00:00
Fix off-by-one error chopping off first char of people's names
This commit is contained in:
@@ -25,7 +25,7 @@ for r in lines[1:]:
|
|||||||
if mug: pics +=1
|
if mug: pics +=1
|
||||||
output += '<tr><td>'
|
output += '<tr><td>'
|
||||||
if expos_caving == 0: output += '<span class="didntcave">'
|
if expos_caving == 0: output += '<span class="didntcave">'
|
||||||
output += name[1:-1].replace('""', '"')
|
output += name.replace('""', '"')
|
||||||
if expos_caving == 0: output += '</span>'
|
if expos_caving == 0: output += '</span>'
|
||||||
output += '</td><td>'
|
output += '</td><td>'
|
||||||
if guest: output += '§'
|
if guest: output += '§'
|
||||||
|
|||||||
Reference in New Issue
Block a user