aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-12-14 13:33:20 -0800
committerzotlabs <mike@macgirvin.com>2017-12-14 13:33:20 -0800
commit538845cbf5acb7c1192bc18f7020888fe76d638e (patch)
treedb20acaab2b6f3befc1598ab7e0c5239f51060bd /include
parent869126259b4089f235d1e9e27e67555611c98d24 (diff)
parenta61c72b3b2076a5971eca47cda8aa067c03f9d6c (diff)
downloadvolse-hubzilla-538845cbf5acb7c1192bc18f7020888fe76d638e.tar.gz
volse-hubzilla-538845cbf5acb7c1192bc18f7020888fe76d638e.tar.bz2
volse-hubzilla-538845cbf5acb7c1192bc18f7020888fe76d638e.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php4
-rw-r--r--include/nav.php10
2 files changed, 8 insertions, 6 deletions
diff --git a/include/conversation.php b/include/conversation.php
index fc0942474..77694deb3 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -755,8 +755,8 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa
'forged' => $forged,
'txt_cats' => t('Categories:'),
'txt_folders' => t('Filed under:'),
- 'has_cats' => ((count($body['categories'])) ? 'true' : ''),
- 'has_folders' => ((count($body['folders'])) ? 'true' : ''),
+ 'has_cats' => (($body['categories']) ? 'true' : ''),
+ 'has_folders' => (($body['folders']) ? 'true' : ''),
'text' => strip_tags($body['html']),
'ago' => relative_date($item['created']),
'app' => $item['app'],
diff --git a/include/nav.php b/include/nav.php
index 2366fe7f1..8566cc58c 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -176,13 +176,15 @@ EOT;
}
-
- $homelink = get_my_url();
- if(! $homelink) {
+ $my_url = get_my_url();
+ if(! $my_url) {
$observer = App::get_observer();
- $homelink = (($observer) ? $observer['xchan_url'] : '');
+ $my_url = (($observer) ? $observer['xchan_url'] : '');
}
+ $homelink_arr = parse_url($my_url);
+ $homelink = $homelink_arr['scheme'] . '://' . $homelink_arr['host'];
+
if(! $is_owner) {
$nav['rusermenu'] = array(
$homelink,