Skip to content
Snippets Groups Projects
Commit 6baa2ba1 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #26637 by Robert Douglas: he documentation to theme_node clearly says...

- Patch #26637 by Robert Douglas: he documentation to theme_node clearly says the the parameter $teaser is "Whether to display the teaser only, as on the main page." Naming this parameter $main in the themes is confusing.
parent f3b28d37
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -193,7 +193,7 @@ function phptemplate_page($content) {
* Prepare the values passed to the theme_node function to be passed
* into a pluggable template engine.
*/
function phptemplate_node($node, $main = 0, $page = 0) {
function phptemplate_node($node, $teaser = 0, $page = 0) {
if (module_exist('taxonomy')) {
$taxonomy = taxonomy_link('taxonomy terms', $node);
}
......@@ -202,15 +202,15 @@ function phptemplate_node($node, $main = 0, $page = 0) {
}
$variables = array(
'content' => ($main && $node->teaser) ? $node->teaser : $node->body,
'content' => ($teaser && $node->teaser) ? $node->teaser : $node->body,
'date' => format_date($node->created),
'links' => $node->links ? theme('links', $node->links) : '',
'main' => $main,
'name' => theme('username', $node),
'node' => $node, // we pass the actual node to allow more customization
'node_url' => url('node/'. $node->nid),
'page' => $page,
'taxonomy' => $taxonomy,
'teaser' => $teaser,
'terms' => theme('links', $taxonomy),
'title' => check_plain($node->title)
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment