My code blocks were missing
li tags, here's me fixing that (not that it helped my situation, but it helps keep things clear):
Code:
program:
before = '<ul>';
after = '</ul>';
j = '';
for i in 'tags':
j += '<li>' + i + '</li>';
rof;
before + j + after;
Code:
program: before = '<ul>'; after = '</ul>'; j = ''; for i in 'tags': j += '<li>' + i + '</li>'; rof; before + j + after;
I have also tried using
field('tags') (instead of
'tags') and
strcat(before, j, after); (instead of
before + j + after;) in my code. Still same error.