mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-05-07 21:45:48 +02:00
fix: user urls in subfolder install
fix missing await
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
<tr data-id="{posts.id}">
|
||||
<td class="col-md-1">
|
||||
<!-- IF posts.user.userslug -->
|
||||
<a href="/uid/{posts.user.uid}">{posts.user.username}</a>
|
||||
<a href="{config.relative_path}/uid/{posts.user.uid}">{posts.user.username}</a>
|
||||
<!-- ELSE -->
|
||||
{posts.user.username}
|
||||
<!-- ENDIF posts.user.userslug -->
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
<!-- ELSE -->
|
||||
<div class="user-img avatar avatar-sm" style="background-color: {users.ipMatch.icon:bgColor};">{users.ipMatch.icon:text}</div>
|
||||
<!-- ENDIF users.ipMatch.picture -->
|
||||
<a href="/uid/{users.ipMatch.uid}">{users.ipMatch.username}</a>
|
||||
<a href="{config.relative_path}/uid/{users.ipMatch.uid}">{users.ipMatch.username}</a>
|
||||
<!-- END users.ipMatch -->
|
||||
</td>
|
||||
<td class="hidden-xs">
|
||||
|
||||
Reference in New Issue
Block a user