diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-12 00:11:15 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-12 00:11:15 +0000 |
commit | 7f25862f955c94fb5eda389bd8848d6b5f64b1c8 (patch) | |
tree | 766983fc7bd096bf51d5fba9d8abeef8e28fa0af /modules/comment/comment.module | |
parent | 82a36d5d78fce2cfe80405ea326f8be24e14fab6 (diff) | |
download | brdo-7f25862f955c94fb5eda389bd8848d6b5f64b1c8.tar.gz brdo-7f25862f955c94fb5eda389bd8848d6b5f64b1c8.tar.bz2 |
#93821 by lyricnz. Fix an undefined variable.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 016029041..1873c1b84 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -891,6 +891,7 @@ function comment_render($node, $cid = 0) { $output .= drupal_get_form('comment_controls', $mode, $order, $comments_per_page); } + $divs = 0; $last_depth = 0; drupal_add_css(drupal_get_path('module', 'comment') . '/comment.css'); while ($comment = db_fetch_object($result)) { |