aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-06 15:29:18 -0800
committerfriendica <info@friendica.com>2012-03-06 15:29:18 -0800
commit496a0ce4d110e5a777861aff7cd4c82fe2308c89 (patch)
tree679f1b68155f65c8148716c2107167e879cd3300 /include
parent7431bd950937929a21b7d158564a8f9a80d07c5f (diff)
parent1fae778421253b713c166f3e4d329997a9e214a3 (diff)
downloadvolse-hubzilla-496a0ce4d110e5a777861aff7cd4c82fe2308c89.tar.gz
volse-hubzilla-496a0ce4d110e5a777861aff7cd4c82fe2308c89.tar.bz2
volse-hubzilla-496a0ce4d110e5a777861aff7cd4c82fe2308c89.zip
Merge branch 'pull'
Diffstat (limited to 'include')
-rwxr-xr-xinclude/nav.php3
-rw-r--r--[-rwxr-xr-x]include/text.php6
2 files changed, 8 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php
index 511ca07fc..aadfa82fd 100755
--- a/include/nav.php
+++ b/include/nav.php
@@ -122,6 +122,9 @@ function nav(&$a) {
}
$nav['messages'] = array('message', t('Messages'), "", t('Private mail'));
+ $nav['messages']['inbox'] = array('message', t('Inbox'), "", t('Inbox'));
+ $nav['messages']['outbox']= array('message/sent', t('Outbox'), "", t('Outbox'));
+ $nav['messages']['new'] = array('message/new', t('New Message'), "", t('New Message'));
if(is_array($a->identities) && count($a->identities) > 1) {
$nav['manage'] = array('manage', t('Manage'), "", t('Manage other pages'));
diff --git a/include/text.php b/include/text.php
index c8c03174e..e7c95d35c 100755..100644
--- a/include/text.php
+++ b/include/text.php
@@ -738,6 +738,9 @@ function smilies($s, $sample = false) {
'~friendika',
'~friendica',
// 'Diaspora*'
+ ':beard',
+ ':whitebeard'
+
);
$icons = array(
@@ -779,7 +782,8 @@ function smilies($s, $sample = false) {
'<a href="http://project.friendika.com">~friendika <img src="' . $a->get_baseurl() . '/images/friendika-16.png" alt="~friendika" /></a>',
'<a href="http://friendica.com">~friendica <img src="' . $a->get_baseurl() . '/images/friendica-16.png" alt="~friendica" /></a>',
// '<a href="http://diasporafoundation.org">Diaspora<img src="' . $a->get_baseurl() . '/images/diaspora.png" alt="Diaspora*" /></a>',
-
+ '<img src="' . $a->get_baseurl() . '/images/beard.jpg" alt=":beard" />',
+ '<img src="' . $a->get_baseurl() . '/images/whitebeard.jpg" alt=":whitebeard" />'
);
$params = array('texts' => $texts, 'icons' => $icons, 'string' => $s);