blob: e66ba190b7fd511f2952e15dd5b4fa19553229d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
// $Id$
/**
* @file
* Output for user profile categories.
*/
?>
<?php if ($title) : ?>
<h2><?php print $title; ?></h2>
<?php endif; ?>
<dl<?php print $attributes; ?>>
<?php print $profile_items; ?>
</dl>
|