show item title in channel/mid and display pages
This commit is contained in:
parent
7926ed079a
commit
2c7e8bea88
@ -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>';
|
||||
|
@ -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) {
|
||||
|
@ -563,10 +563,19 @@ function updateConvItems(mode,data) {
|
||||
}
|
||||
prev = ident;
|
||||
});
|
||||
|
||||
|
||||
if(loadingPage) {
|
||||
loadingPage = false;
|
||||
}
|
||||
|
||||
if (window.location.search.indexOf("mid=") != -1 || window.location.pathname.indexOf("display") != -1) {
|
||||
var title = $(".wall-item-title").text();
|
||||
title.replace(/^\s+/, '');
|
||||
title.replace(/\s+$/, '');
|
||||
if (title)
|
||||
document.title = title + " - " + document.title;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$('.like-rotator').spin(false);
|
||||
|
Reference in New Issue
Block a user