diff options
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mod/display.php b/mod/display.php index aa9455361..92034d9ae 100644 --- a/mod/display.php +++ b/mod/display.php @@ -235,6 +235,12 @@ function display_content(&$a) { $location = '<span class="smalltext">' . $coord . '</span>'; } + $indent = (($item['parent'] != $item['item_id']) ? ' comment' : ''); + + if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) + $indent .= ' shiny'; + + $o .= replace_macros($template,array( '$id' => $item['item_id'], '$profile_url' => $profile_link, @@ -247,7 +253,7 @@ function display_content(&$a) { '$ago' => relative_date($item['created']), '$lock' => $lock, '$location' => $location, - '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''), + '$indent' => $indent, '$owner_url' => $owner_url, '$owner_photo' => $owner_photo, '$owner_name' => $owner_name, |