You are here

function theme_guestbook_form_comment_form in Guestbook 6

Same name and namespace in other branches
  1. 5 guestbook.module \theme_guestbook_form_comment_form()

File

./guestbook.module, line 624

Code

function theme_guestbook_form_comment_form($form_state) {
  $output = '';
  $output .= '<div class="container-inline">';
  $output .= drupal_render($form_state);
  $output .= '</div>';
  return $output;
}