You are here

function theme_guestbook_form_comment_form in Guestbook 5

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

File

./guestbook.module, line 590

Code

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