| 5 form.inc | theme_markup($element) |
| 6 form.inc | theme_markup($element) |
Related topics
1 theme call to theme_markup()
File
- includes/
form.inc, line 2131
Code
function theme_markup($element) {
return (isset($element['#value']) ? $element['#value'] : '') . (isset($element['#children']) ? $element['#children'] : '');
}
Login or register to post comments