theme_markup
Definition
theme_markup($element)
includes/form.inc, line 1469
Code
<?php
function theme_markup($element) {
return (isset($element['#value']) ? $element['#value'] : '') . (isset($element['#children']) ? $element['#children'] : '');
}
?> 