summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bensch <jeroen@44.no-reply.drupal.org>2001-03-12 17:12:36 +0000
committerJeroen Bensch <jeroen@44.no-reply.drupal.org>2001-03-12 17:12:36 +0000
commitf96497e214a47a1cd7bea9f0792538abf7de93ec (patch)
treea0634738dc67ba5c731fe3e884d880c0d415bfcf
parentef0e2d167b114a26ebaf80f96f94e8014d80ed06 (diff)
downloadbrdo-f96497e214a47a1cd7bea9f0792538abf7de93ec.tar.gz
brdo-f96497e214a47a1cd7bea9f0792538abf7de93ec.tar.bz2
Hey,
Fixed jeroen.theme. 1. comment() function only gets 2 arguments. And as I made example.theme from jeroen.theme I don't see how thread got in there. 2. That must have sneaked in while I stripped down my theme to get to example.theme. 3. Fixed, it was already done in my top-right navigation box, but I must've forgotten it at the bottom. 4. OK, no more variable timestamp but straigt in the code. :) Jeroen.
-rw-r--r--themes/jeroen/jeroen.theme5
1 files changed, 2 insertions, 3 deletions
diff --git a/themes/jeroen/jeroen.theme b/themes/jeroen/jeroen.theme
index da66feac4..bedb89a53 100644
--- a/themes/jeroen/jeroen.theme
+++ b/themes/jeroen/jeroen.theme
@@ -78,7 +78,6 @@
} // close header function
function story($story, $reply = 0) {
- $timestamp = format_date($story->timestamp);
?>
@@ -113,7 +112,7 @@
case 12: $how = "Forged"; break;
default: $how = "Sneaked through";
}
- echo "<FONT SIZE=\"-1\">". strtr(t("$how by %a on %b"), array("%a" => format_username($story->userid), "%b" => $timestamp, "large")) ."</FONT>
+ echo "<FONT SIZE=\"-1\">". strtr(t("$how by %a on %b"), array("%a" => format_username($story->userid), "%b" => format_date($story->timestamp), "large")) ."</FONT>
</FONT>
</TD>
<TD ALIGN=\"right\" BACKGROUND=\"themes/jeroen/images/menutitle.gif\" NOWRAP>
@@ -310,7 +309,7 @@
<TR>
<TD ALIGN="left" WIDTH="20" HEIGHT="20" BACKGROUND="themes/jeroen/images/footerleft.gif" NOWRAP>&nbsp;</TD>
<TD WIDTH="100%" BACKGROUND="themes/jeroen/images/footer.gif" ALIGN="center" VALIGN="middle">
- <FONT COLOR="#E09226" SIZE="2">[ <A HREF="">Home</A> | <A HREF="module.php?mod=faq">Faq</A> | <A HREF="search.php">Search</A> | <A HREF="module.php?mod=diary">Diary</A>| <A HREF="submit.php">Submit news</A> | <A HREF="account.php">Account</A> ] </FONT>
+ <FONT COLOR="#E09226" SIZE="2">[ <A HREF="index.php">Home</A> | <A HREF="module.php?mod=faq">Faq</A> | <A HREF="search.php">Search</A> | <A HREF="module.php?mod=diary">Diary</A>| <A HREF="submit.php">Submit news</A> | <A HREF="account.php">Account</A> ] </FONT>
</TD>
<TD ALIGN="right" WIDTH="20" BACKGROUND="themes/jeroen/images/footerright.gif" NOWRAP>&nbsp;</TD>
</TR>