make the username in quotes link to the userprofile
This commit is contained in:
parent
a899e9f5a9
commit
4321607b7b
@ -37,7 +37,7 @@ def tohtml(value):
|
||||
value = re.sub(r'\[img\](.*?)\[/img\]', r'<img src="\1">', value)
|
||||
|
||||
for i in range(25): # ugly hack but works good enough
|
||||
value = re.sub(r'\[quote=(.+?)\](.+)\[/quote\]', r'<fieldset><legend>\1</legend>\2</fieldset>', value, count=1)
|
||||
value = re.sub(r'\[quote=(.+?)\](.+)\[/quote\]', '<fieldset><legend>' + '<a href="../../user/' + url_replacer(r'\1') + '.html">' + r'\1</a></legend>\2</fieldset>', value, count=1)
|
||||
|
||||
for i in range(25): # same here, shut up
|
||||
value = re.sub(r'\[quote\](.*?)\[/quote\]', r'<fieldset>\1</fieldset>', value)
|
||||
|
Loading…
Reference in New Issue
Block a user