summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2001-01-04 15:27:26 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2001-01-04 15:27:26 +0000
commitfbb5370581eba49fb8462c97b52eb34cf225a3fb (patch)
treefc4e421fdb40575509b66b8e049647fbd1e1da14
parent3238b4f27200a56e63d79e3ad091283c79496a17 (diff)
downloadbrdo-fbb5370581eba49fb8462c97b52eb34cf225a3fb.tar.gz
brdo-fbb5370581eba49fb8462c97b52eb34cf225a3fb.tar.bz2
Category bug fixed.
-rw-r--r--themes/unconed/unconed.theme4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme
index 62ebb8da1..7a386d18c 100644
--- a/themes/unconed/unconed.theme
+++ b/themes/unconed/unconed.theme
@@ -87,7 +87,7 @@
else { print "<SMALL>Posted by $anonymous on $timestamp"; }
if ($story->department) { print " - from the $story->department dept."; }
print "</SMALL>";
- if ($story->category) { print "</TD><TD BGCOLOR=\"$this->bgcolor2\" ALIGN=\"center\"><B><A HREF=\"search.php?category=$story->category\"><FONT COLOR=\"$this->categorycolor\">$story->category</FONT></A></B>"; }
+ if ($story->category) { print "</TD><TD BGCOLOR=\"$this->bgcolor2\" ALIGN=\"center\"><B><A HREF=\"search.php?category=" . urlencode($story->category) . "\"><FONT COLOR=\"$this->categorycolor\">$story->category</FONT></A></B>"; }
?>
</TD>
</TR>
@@ -122,7 +122,7 @@
else { print "<SMALL>Posted by $anonymous on $timestamp"; }
if ($story->department) { print " - from the $story->department dept."; }
print "</SMALL>";
- if ($story->category) { print "</TD><TD BGCOLOR=\"$this->bgcolor3\" ALIGN=\"center\"><B><A HREF=\"search.php?category=$story->category\"><FONT COLOR=\"$this->categorycolor\">$story->category</FONT></A></B>"; }
+ if ($story->category) { print "</TD><TD BGCOLOR=\"$this->bgcolor3\" ALIGN=\"center\"><B><A HREF=\"search.php?category=" . urlencode($story->category) . "\"><FONT COLOR=\"$this->categorycolor\">$story->category</FONT></A></B>"; }
?>
</TD>
</TR>