blob: 14292ce596971ae50c38cc22ebc0179b9ee9bd1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Elgg content wrapper
* This file holds the main content
*/
$body = elgg_get_array_value('body', $vars, '');
echo <<<HTML
<div id="elgg-page-body">
$body
</div>
HTML;
|