summaryrefslogtreecommitdiff
path: root/themes/engines/phptemplate
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-30 07:37:14 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-30 07:37:14 +0000
commite57fac565a11a7350abebd26ec3a47c642330e7a (patch)
tree289203067a47bd97487955b41838cb2ba05b80e7 /themes/engines/phptemplate
parentc0d00699086f8a32093db8a8132f7aea17774a9c (diff)
downloadbrdo-e57fac565a11a7350abebd26ec3a47c642330e7a.tar.gz
brdo-e57fac565a11a7350abebd26ec3a47c642330e7a.tar.bz2
#65151 by m3avrck. theme_links() is now marked up as a list.
Diffstat (limited to 'themes/engines/phptemplate')
-rw-r--r--themes/engines/phptemplate/phptemplate.engine4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine
index 831e35059..a51501a04 100644
--- a/themes/engines/phptemplate/phptemplate.engine
+++ b/themes/engines/phptemplate/phptemplate.engine
@@ -269,14 +269,14 @@ function phptemplate_node($node, $teaser = 0, $page = 0) {
$variables = array(
'content' => ($teaser && $node->teaser) ? $node->teaser : $node->body,
'date' => format_date($node->created),
- 'links' => $node->links ? theme('links', $node->links) : '',
+ 'links' => $node->links ? theme('links', $node->links, array('class' => 'links inline')) : '',
'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),
+ 'terms' => theme('links', $taxonomy, array('class' => 'links inline')),
'title' => check_plain($node->title)
);