Changeset 12633

Show
Ignore:
Timestamp:
02/22/08 17:58:00 (11 months ago)
Author:
pottedmeat
Message:

Refs #5602. Turn on comments

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • util/branches/dev/jsdoc/jsdoc.module

    r12629 r12633  
    21962196  } 
    21972197 
     2198  if (function_exists('comment_render') && $node->comment) { 
     2199    $form['comments'] = array( 
     2200      '#value' => comment_render($node), 
     2201      '#weight' => 30 
     2202    ); 
     2203  } 
     2204 
    21982205  drupal_set_title(theme('jsdoc_object_title', _jsdoc_get_title_themed($node))); 
    21992206 
     
    23872394  } 
    23882395 
     2396  if (function_exists('comment_render') && $node->comment) { 
     2397    $form['comments'] = array( 
     2398      '#value' => comment_render($node), 
     2399      '#weight' => 50 
     2400    ); 
     2401  } 
     2402 
    23892403  return drupal_render_form('jsdoc_object_form', $form); 
    23902404}