summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2003-11-01 15:11:51 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2003-11-01 15:11:51 +0000
commit9eeb24f6fc3ffe8c3aecf4dcd6bc854272bffe16 (patch)
tree3f998572261a3e5846f94e49777e2dfcbd8165cd /modules
parent4b4da3fbb1b7af0dce1fdd755083d7670841785f (diff)
downloadbrdo-9eeb24f6fc3ffe8c3aecf4dcd6bc854272bffe16.tar.gz
brdo-9eeb24f6fc3ffe8c3aecf4dcd6bc854272bffe16.tar.bz2
poll.module: Fixed invalid XHTML (Patch by Gabor Hojtsy)
Diffstat (limited to 'modules')
-rw-r--r--modules/poll.module2
-rw-r--r--modules/poll/poll.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/poll.module b/modules/poll.module
index 72deda17e..c1ec27959 100644
--- a/modules/poll.module
+++ b/modules/poll.module
@@ -328,7 +328,7 @@ function poll_view_results(&$node, $main, $block, $links) {
}
$output .= "<div class=\"total\">". t("Total votes") .": $votestotal</div>";
- $output .= ($block ? "<div class=\"links\" />". theme("links", $links) ."</div>" : "") ."</div>";
+ $output .= ($block ? "<div class=\"links\">". theme("links", $links) ."</div>" : "") ."</div>";
return $output;
}
diff --git a/modules/poll/poll.module b/modules/poll/poll.module
index 72deda17e..c1ec27959 100644
--- a/modules/poll/poll.module
+++ b/modules/poll/poll.module
@@ -328,7 +328,7 @@ function poll_view_results(&$node, $main, $block, $links) {
}
$output .= "<div class=\"total\">". t("Total votes") .": $votestotal</div>";
- $output .= ($block ? "<div class=\"links\" />". theme("links", $links) ."</div>" : "") ."</div>";
+ $output .= ($block ? "<div class=\"links\">". theme("links", $links) ."</div>" : "") ."</div>";
return $output;
}