function theme_workspace_add_form in Workspace 7
File
- ./
workspace.module, line 930  - Presents a user-centric view of content.
 
Code
function theme_workspace_add_form($variables) {
  $form = $variables['form'];
  $output = '';
  $output .= drupal_render_children($form);
  return $output;
}