diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-03-10 18:46:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-03-10 18:46:47 +0000 |
commit | 266167b976d45b876253ac054aa38851fab39f70 (patch) | |
tree | 26bb3c0be58b1c826839390bbae55d87f26f2fc8 | |
parent | 8af189197ebdfb972514de822627a6072534b420 (diff) | |
download | brdo-266167b976d45b876253ac054aa38851fab39f70.tar.gz brdo-266167b976d45b876253ac054aa38851fab39f70.tar.bz2 |
- fixed small glitch as a result from David's patch
-rw-r--r-- | includes/comment.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/comment.inc b/includes/comment.inc index c4587b124..26a098dd7 100644 --- a/includes/comment.inc +++ b/includes/comment.inc @@ -238,7 +238,7 @@ function comment_visible($comment, $threshold = 0) { function comment_uri($args = 0) { global $link, $mod; - if ($args) return ($mod) ? "module.php?mod=$mod&$args" : $link .".php ?$args"; + if ($args) return ($mod) ? "module.php?mod=$mod&$args" : $link .".php?$args"; else return ($mod) ? "module.php?mod=$mod" : $link .".php"; } |