- Patch 6140 by Goba: fix the 'read more'-link behavior.

4.4.x
Dries Buytaert 2004-03-06 10:57:53 +00:00
parent 76192f667d
commit 744405e316
2 changed files with 4 additions and 2 deletions

View File

@ -494,6 +494,7 @@ function node_view($node, $main = 0, $page = 0) {
}
function node_prepare($node, $main = 0) {
$node->readmore = (strlen($node->teaser) < strlen($node->body));
if ($main == 0) {
$node->body = check_output($node->body);
}
@ -597,7 +598,7 @@ function node_link($type, $node = 0, $main = 0) {
$links = $node->links;
}
if ($main == 1 && $node->teaser && strlen($node->teaser) != strlen($node->body)) {
if ($main == 1 && $node->teaser && $node->readmore) {
$links[] = l(t('read more'), "node/view/$node->nid", array('title' => t('Read the rest of this posting.'), 'class' => 'read-more'));
}

View File

@ -494,6 +494,7 @@ function node_view($node, $main = 0, $page = 0) {
}
function node_prepare($node, $main = 0) {
$node->readmore = (strlen($node->teaser) < strlen($node->body));
if ($main == 0) {
$node->body = check_output($node->body);
}
@ -597,7 +598,7 @@ function node_link($type, $node = 0, $main = 0) {
$links = $node->links;
}
if ($main == 1 && $node->teaser && strlen($node->teaser) != strlen($node->body)) {
if ($main == 1 && $node->teaser && $node->readmore) {
$links[] = l(t('read more'), "node/view/$node->nid", array('title' => t('Read the rest of this posting.'), 'class' => 'read-more'));
}