mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
add a comment as explanation for #3737
This commit is contained in:
parent
3e0b76f478
commit
b4d203947b
1 changed files with 5 additions and 0 deletions
|
@ -96,6 +96,11 @@ class Item extends BaseObject {
|
|||
|
||||
$item = $this->get_data();
|
||||
$edited = false;
|
||||
// If the time between "created" and "editet" differes we add
|
||||
// a notices that the post was editet.
|
||||
// Note: In some networks reshared items seem to have (sometimes) a difference
|
||||
// between creation time and edit time of a second. Thats why we add the notice
|
||||
// only if the difference is more than 1 second.
|
||||
if (abs(strtotime($item['created']) - strtotime($item['edited'])) > 1) {
|
||||
$edited = array(
|
||||
'label' => t('This entry was edited'),
|
||||
|
|
Loading…
Reference in a new issue