blob: 4fb43e7c9f22b2a000dbb83185c70ce4a3dc418d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Wrapper for profile content
*
* @uses string $vars['content'] - Profile body
*/
$content = elgg_get_array_value('content', $vars, '');
?>
<div id="profile_content">
<?php echo $content; ?>
</div>
|