diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-10-21 12:54:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-10-21 12:54:08 +0000 |
commit | e156b0c41483d81743e00bc96c5e320dc9dabbdc (patch) | |
tree | 2ea7d4ca3aa2ad06112e318697fed503d3367883 | |
parent | 02abb946392483ee7767ceed7cf48c19cd5b07b3 (diff) | |
download | brdo-e156b0c41483d81743e00bc96c5e320dc9dabbdc.tar.gz brdo-e156b0c41483d81743e00bc96c5e320dc9dabbdc.tar.bz2 |
- fixed a bug in unconed.theme
-rw-r--r-- | themes/unconed/unconed.theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index ddf19ad62..d1abf900b 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -197,7 +197,7 @@ <OPTION VALUE="1" <? if ($order==1) { echo "SELECTED"; } ?>>Newest first <OPTION VALUE="2" <? if ($order==2) { echo "SELECTED"; } ?>>Highest scoring first </SELECT> - <INPUT TYPE="hidden" NAME="sid" VALUE="<? echo "$sid"; ?>"> <INPUT TYPE="submit" VALUE="Refresh"> + <INPUT TYPE="hidden" NAME="sid" VALUE="<? echo "$sid"; ?>"> <INPUT TYPE="submit" VALUE="Save"> <? if (isset($user)) echo "<BR><CENTER><INPUT TYPE=\"checkbox\" NAME=\"save\"> Save preferences</CENTER>"; ?> @@ -256,7 +256,7 @@ echo " <TD ALIGN=\"right\" VALIGN=\"top\">Author:</TD><TD><B>" . format_username($poster) . "</B> "; if ($poster != $anonymous) { ### Display extra information line: - if ($email) $info .= format_email_address($email); + if ($email) $info .= format_email($email); if (eregi("http://",$url)) $info .= " | " . format_url($url); echo "<BR>[ $info ]"; } |