diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/example.theme | 2 | ||||
-rw-r--r-- | themes/goofy/goofy.theme | 2 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 2 | ||||
-rw-r--r-- | themes/trillian/trillian.theme | 3 | ||||
-rw-r--r-- | themes/unconed/unconed.theme | 2 |
5 files changed, 5 insertions, 6 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index 9c918e4c3..d1c512b7e 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -169,7 +169,7 @@ global $PHP_SELF; - theme_account("right", $this); + $this->user("right", $this); theme_blocks("right", $this); ?> diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 4f32b5496..28737d19d 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -139,7 +139,7 @@ function c(subject,mod,author,date,body) {document.writeln("<table border=\"0\" </td> <td valign="top"> <?php - theme_account("all", $this); + $this->user("all", $this); theme_blocks("all", $this); ?> </td> diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index a80851851..592c9fdcd 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -140,7 +140,7 @@ </td> <td valign="top" width="200"> <?php - theme_account("all", $this); + $this->user("all", $this); theme_blocks("all", $this); ?> </td> diff --git a/themes/trillian/trillian.theme b/themes/trillian/trillian.theme index 57a1642b0..7f1e112ea 100644 --- a/themes/trillian/trillian.theme +++ b/themes/trillian/trillian.theme @@ -43,10 +43,9 @@ if ($date != date("dny", $node->timestamp)) { $date = date("dny", $node->timestamp); - print "<br />"; print "<table width=\"100%\" cellspacing=\"1\" cellpadding=\"0\" border=\"0\">"; print "<tr><td align=\"left\"> <div style=\"font-weight: bold;\">". format_date($node->timestamp, "custom", "l, F d, Y") ."</div></td><td align=\"right\"><img src=\"themes/trillian/images/icon.gif\" alt=\"\" /></td><tr>"; - print " <tr valign=\"bottom\"><td colspan=\"2\" bgcolor=\"#000000\" width=\"100%\"><spacer type=\"block\" height=\"100\" /></td></tr>\n"; + print " <tr valign=\"bottom\"><td colspan=\"2\" bgcolor=\"green\" width=\"100%\"><spacer type=\"block\" height=\"100\" /></td></tr>\n"; print "</table>"; print "<br />"; } diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index 5be0ea02d..59dbec98b 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -190,7 +190,7 @@ </TD> <TD VALIGN="top" WIDTH="20%"> <?php - theme_account("all", $this); + $this->user("all", $this); theme_blocks("all", $this); ?> </TD> |