From 83542a1b0128081bdfdd712becb8a870e8e99e86 Mon Sep 17 00:00:00 2001 From: natrak <> Date: Mon, 11 Jun 2001 17:42:52 +0000 Subject: Changes - fixed the trailing | in some cases. - removed theme_morelinks(). - added node_links(). - simplified BaseTheme->links(). - updated themes. Notes - the new links system is taking form, but concider it beta. There might still be some major changes ahead so I suggest waiting a little longer before modifying your theme to take advantage of it. --- themes/goofy/goofy.theme | 2 +- themes/jeroen/jeroen.theme | 4 ++-- themes/yaroon/yaroon.theme | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'themes') diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 56c28dd78..89d4a3343 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -104,7 +104,7 @@ function c(subject,mod,author,date,body) {document.writeln("
links($links, $main, $node); - + if (node_links($links, $node, $main)) + echo $this->links($links, $main); ?> | diff --git a/themes/yaroon/yaroon.theme b/themes/yaroon/yaroon.theme index 4aefd8a1a..66280be8b 100644 --- a/themes/yaroon/yaroon.theme +++ b/themes/yaroon/yaroon.theme @@ -145,8 +145,8 @@|
"; - if ($main || $links) - echo $this->links($links, $main, $node); + if (node_links($links, $node, $main)) + echo $this->links($links, $main); echo""; ?> -- cgit v1.2.3 |