diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/example.theme | 2 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 2 | ||||
-rw-r--r-- | themes/unconed/unconed.theme | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index caa3c9518..dae6300a0 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -83,7 +83,7 @@ <TR> <TD COLSPAN="2"> <?php - if ($main || $links) echo $this->links($links, $main, $node); + if (node_links($links, $node, $main)) echo $this->links($links, $main); ?> </TD> diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index 108f4acfc..15d11eb62 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -63,7 +63,7 @@ print " <TD COLSPAN=\"2\"><P>". check_output($node->body, 1) ."</P></TD>\n"; print " </TR>\n"; print " <TR><TD COLSPAN=\"2\"> </TD></TR>\n"; - if ($main || $links) print " <TR><TD COLSPAN=\"2\">". $this->links($links, $main, $node) ."</TD></TR>\n"; + if (node_links($links, $node, $main)) print " <TR><TD COLSPAN=\"2\">". $this->links($links, $main) ."</TD></TR>\n"; print "</TABLE>\n"; print "<BR><BR>\n\n"; } diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index cd20fe3ab..a2b95a4db 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -101,8 +101,8 @@ </TD> </TR> <?php - if ($main || $links) - echo "<TR BGCOLOR=\"". $this->bgcolor3 ."\"><TD BGCOLOR=\"". $this->bgcolor3 ."\" ALIGN=\"right\" COLSPAN=\"2\">". $this->links($links, $main, $node) ."</TD></TR>"; + if (node_links($links, $node, $main)) + echo "<TR BGCOLOR=\"". $this->bgcolor3 ."\"><TD BGCOLOR=\"". $this->bgcolor3 ."\" ALIGN=\"right\" COLSPAN=\"2\">". $this->links($links, $main) ."</TD></TR>"; ?> </TABLE></TD></TR></TABLE><BR> <?php |