function theme_markup

6.x form.inc theme_markup($element)

Related topics

1 theme call to theme_markup()
drupal_render in drupal-6.x/includes/common.inc
Renders HTML given a structured array tree.

File

drupal-6.x/includes/form.inc, line 2137

Code

function theme_markup($element) {
  return (isset($element['#value']) ? $element['#value'] : '') . (isset($element['#children']) ? $element['#children'] : '');
}