aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rw-r--r--mod/network.php2
-rw-r--r--mod/profile.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php
index 845a6bb77..0e8c8746f 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -153,7 +153,7 @@ function network_content(&$a) {
'$thumb' => $profile_avatar,
'$body' => bbcode($item['body']),
'$ago' => relative_date($item['created']),
- '$indent' => (($item['parent'] != $item['item_id']) ? 'comment-' : ''),
+ '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
'$owner_url' => $owner_url,
'$owner_photo' => $owner_photo,
'$owner_name' => $owner_name,
diff --git a/mod/profile.php b/mod/profile.php
index bb7357e5b..6b425bcd1 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -241,7 +241,7 @@ function profile_content(&$a) {
'$thumb' => $profile_avatar,
'$body' => bbcode($item['body']),
'$ago' => relative_date($item['created']),
- '$indent' => (($item['parent'] != $item['item_id']) ? 'comment-' : ''),
+ '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
'$comment' => $comment
));
}