diff options
author | friendica <info@friendica.com> | 2015-02-20 14:07:49 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-20 14:07:49 -0800 |
commit | 9bd56202b4f279acea5c428802b3079329e14c89 (patch) | |
tree | 9001de7e7b9ea12904d9f99d7760910e7fe05e94 /mod/display.php | |
parent | 835b2594550a8f53ec5beee370129e2add162ab0 (diff) | |
parent | 035441550cc68d7257e93b37ba553229dde1aa0f (diff) | |
download | volse-hubzilla-9bd56202b4f279acea5c428802b3079329e14c89.tar.gz volse-hubzilla-9bd56202b4f279acea5c428802b3079329e14c89.tar.bz2 volse-hubzilla-9bd56202b4f279acea5c428802b3079329e14c89.zip |
Merge https://github.com/friendica/red into pending_merge
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..d4a1acc5d 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) { |