diff -r c7c0fbc09788 -r 5e8dcbe22c24 web/wp-content/plugins/social/views/wp-admin/post/meta/log/output.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/wp-content/plugins/social/views/wp-admin/post/meta/log/output.php Tue Dec 04 18:43:10 2012 -0800 @@ -0,0 +1,93 @@ +'.__('Aggregation has not been run for this post yet.', 'social').'

'; + } + else { + $i = 0; + $output = ''; + $log = array_reverse($log, 1); + foreach ($log as $timestamp => $_log) { + ++$i; + + $output .= '
'.date(get_option('date_format').' '.get_option('time_format'), ($timestamp + (get_option('gmt_offset') * 3600))).' ('; + if (isset($_log->manual) and $_log->manual) { // isset() check for legacy support + $output .= __('Manual Aggregation', 'social'); + } + else { + $output .= __('Automatic Aggregation', 'social'); + } + $output .= ')
'; + } + + echo $output; + }