aboutsummaryrefslogtreecommitdiffstats
path: root/mod/channel.php
diff options
context:
space:
mode:
authorzottel <github@zottel.net>2015-02-20 14:07:56 +0100
committerzottel <github@zottel.net>2015-02-20 14:07:56 +0100
commit2c7e8bea88abd4e835645996849e16ecd62dfa35 (patch)
treee8d8986e895063df53966392072c1e7e1bbe47e7 /mod/channel.php
parent7926ed079a880a787cbff6d373438ee924810345 (diff)
downloadvolse-hubzilla-2c7e8bea88abd4e835645996849e16ecd62dfa35.tar.gz
volse-hubzilla-2c7e8bea88abd4e835645996849e16ecd62dfa35.tar.bz2
volse-hubzilla-2c7e8bea88abd4e835645996849e16ecd62dfa35.zip
show item title in channel/mid and display pages
Diffstat (limited to 'mod/channel.php')
-rw-r--r--mod/channel.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/channel.php b/mod/channel.php
index 788bacf70..109c9a596 100644
--- a/mod/channel.php
+++ b/mod/channel.php
@@ -329,8 +329,11 @@ function channel_content(&$a, $update = 0, $load = false) {
$o .= conversation($a,$items,'channel',$update,'traditional');
}
- if((! $update) || ($_COOKIE['jsAvailable'] != 1))
+ if((! $update) || ($_COOKIE['jsAvailable'] != 1)) {
$o .= alt_pager($a,count($items));
+ if ($mid && $items[0]['title'])
+ $a->page['title'] = $items[0]['title'] . " - " . $a->page['title'];
+ }
if($mid)
$o .= '<div id="content-complete"></div>';