Changeset 12633
- Timestamp:
- 02/22/08 17:58:00 (11 months ago)
- Files:
-
- 1 modified
-
util/branches/dev/jsdoc/jsdoc.module (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
util/branches/dev/jsdoc/jsdoc.module
r12629 r12633 2196 2196 } 2197 2197 2198 if (function_exists('comment_render') && $node->comment) { 2199 $form['comments'] = array( 2200 '#value' => comment_render($node), 2201 '#weight' => 30 2202 ); 2203 } 2204 2198 2205 drupal_set_title(theme('jsdoc_object_title', _jsdoc_get_title_themed($node))); 2199 2206 … … 2387 2394 } 2388 2395 2396 if (function_exists('comment_render') && $node->comment) { 2397 $form['comments'] = array( 2398 '#value' => comment_render($node), 2399 '#weight' => 50 2400 ); 2401 } 2402 2389 2403 return drupal_render_form('jsdoc_object_form', $form); 2390 2404 }