Skip to content

Commit

Permalink
fix: missing relative path re: NodeBB/NodeBB#9166
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlam committed Jan 5, 2021
1 parent 8c12c52 commit b3e8e8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/partials/topics_list.tpl
Expand Up @@ -10,7 +10,7 @@
<!-- IF showSelect -->
<div class="select" component="topic/select">
<!-- IF topics.thumb -->
<img src="{topics.thumb}" class="user-img not-responsive" />
<img src="{config.relative_path}{topics.thumb}" class="user-img not-responsive" />
<!-- ELSE -->
{buildAvatar(topics.user, "46", true, "not-responsive")}
<!-- ENDIF topics.thumb -->
Expand All @@ -21,7 +21,7 @@
<!-- IF !showSelect -->
<a href="<!-- IF topics.user.userslug -->{config.relative_path}/user/{topics.user.userslug}<!-- ELSE -->#<!-- ENDIF topics.user.userslug -->" class="pull-left">
<!-- IF topics.thumb -->
<img src="{topics.thumb}" class="user-img not-responsive" />
<img src="{config.relative_path}{topics.thumb}" class="user-img not-responsive" />
<!-- ELSE -->
{buildAvatar(topics.user, "46", true, "not-responsive")}
<!-- ENDIF topics.thumb -->
Expand Down

0 comments on commit b3e8e8f

Please sign in to comment.