diff options
author | friendica <info@friendica.com> | 2013-12-09 14:05:52 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 14:05:52 -0800 |
commit | 75ebf06131e935795b7072acc012c9e37669eade (patch) | |
tree | eeda74b3434fc593eff6dc4600bfd8924915021c /include/text.php | |
parent | 31efbe2f466a323609f9ed8d38bb5fb6223e406b (diff) | |
download | volse-hubzilla-75ebf06131e935795b7072acc012c9e37669eade.tar.gz volse-hubzilla-75ebf06131e935795b7072acc012c9e37669eade.tar.bz2 volse-hubzilla-75ebf06131e935795b7072acc012c9e37669eade.zip |
some work on modularising the default profile photo so we can make them site selectable. Also red != friendica so we don't need all these friendica logos taking up space
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/text.php b/include/text.php index bd4376ce4..9254508a4 100755 --- a/include/text.php +++ b/include/text.php @@ -884,9 +884,7 @@ function smilies($s, $sample = false) { ':like', ':dislike', 'red#', - 'r#', - '~friendica' - + 'r#' ); $icons = array( @@ -923,8 +921,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://friendica.com">~friendica <img class="smiley" src="' . $a->get_baseurl() . '/images/friendica-16.png" alt="~friendica" /></a>' + '<a href="http://getzot.com"><strong>red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="r#" />matrix</strong></a>' + ); $params = array('texts' => $texts, 'icons' => $icons, 'string' => $s); |