Index: og2list.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/og2list/og2list.module,v
retrieving revision 1.106
diff -u -r1.106 og2list.module
--- og2list.module	7 May 2007 11:54:05 -0000	1.106
+++ og2list.module	23 Jul 2007 06:58:27 -0000
@@ -720,12 +720,12 @@
   $comment = drupal_unpack($comment);
   $comment->name = $comment->uid ? $comment->registered_name : $comment->name;
   if (comment_access('edit', $comment)) {
-    return comment_form((array)$comment);
+    return comment_form_box((array)$comment);
   }
   else if (($user = user_load(array('uid' => $user->uid))) && ($node = node_load($comment->nid)) && $groups = array_intersect($node->og_groups, array_keys($user->og_groups))) {
     foreach ($groups as $gid) {
       if ($user->og_groups[$gid]['is_admin'] == 1) {
-        return comment_form((array) $comment);
+        return comment_form_box((array) $comment);
         break;
       }
     }

