diff options
author | zottel <github@zottel.net> | 2015-02-20 14:07:56 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2015-02-20 14:07:56 +0100 |
commit | 2c7e8bea88abd4e835645996849e16ecd62dfa35 (patch) | |
tree | e8d8986e895063df53966392072c1e7e1bbe47e7 /mod/display.php | |
parent | 7926ed079a880a787cbff6d373438ee924810345 (diff) | |
download | volse-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/display.php')
-rw-r--r-- | mod/display.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/display.php b/mod/display.php index c2e5c2426..d06f1e66f 100644 --- a/mod/display.php +++ b/mod/display.php @@ -228,6 +228,9 @@ function display_content(&$a, $update = 0, $load = false) { $o .= conversation($a, $items, 'display', $update, 'client'); } else { $o .= conversation($a, $items, 'display', $update, 'traditional'); + if ($items[0]['title']) + $a->page['title'] = $items[0]['title'] . " - " . $a->page['title']; + } if($updateable) { |