aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/text.php')
-rwxr-xr-xinclude/text.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 1ff9d27cb..fc70e3509 100755
--- a/include/text.php
+++ b/include/text.php
@@ -878,6 +878,7 @@ function smilies($s, $sample = false) {
':like',
':dislike',
'red#',
+ 'r#',
'~friendica'
);
@@ -916,6 +917,7 @@ 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"><img class="smiley" src="' . $a->get_baseurl() . '/images/rhash-16.png" alt="red#" /> the Red Matrix</a>',
+ '<a href="http://getzot.com"><img class="smiley" src="' . $a->get_baseurl() . '/images/rhash-16.png" alt="r#" /> the Red Matrix</a>',
'<a href="http://friendica.com">~friendica <img class="smiley" src="' . $a->get_baseurl() . '/images/friendica-16.png" alt="~friendica" /></a>'
);
@@ -1344,7 +1346,7 @@ function get_plink($item,$mode) {
else
$key = 'llink';
- if (x($item,$key) && ($item['item_private'] != 1)) {
+ if(x($item,$key)) {
return array(
'href' => zid($item[$key]),
'title' => t('link to source'),