css change to allow live inserts

This commit is contained in:
Mike Macgirvin 2010-07-24 05:52:29 -07:00
parent cb0d45385c
commit 1db8ab907b
4 changed files with 4 additions and 4 deletions

View file

@ -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,

View file

@ -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
));
}