provide an overt indication that a post/comment was edited.

This commit is contained in:
friendica
2014-08-18 22:44:03 -07:00
parent 206492e15d
commit b3d450626e
3 changed files with 6 additions and 4 deletions

View File

@@ -1003,7 +1003,8 @@ function smilies($s, $sample = false) {
':like',
':dislike',
'red#',
'r#'
'r#',
'red#matrix'
);
$icons = array(
@@ -1040,7 +1041,8 @@ function smilies($s, $sample = false) {
'<img class="smiley" src="' . $a->get_baseurl() . '/images/like.gif" alt=":like" />',
'<img class="smiley" src="' . $a->get_baseurl() . '/images/dislike.gif" alt=":dislike" />',
'<a href="http://getzot.com"><strong>red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="red#" />matrix</strong></a>',
'<a href="http://getzot.com"><strong>red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="r#" />matrix</strong></a>'
'<a href="http://getzot.com"><strong>red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="r#" />matrix</strong></a>',
'<a href="http://getzot.com"><strong>red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="red#matrix" />matrix</strong></a>'
);