1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- ?>
- <?php print $user_picture; ?>
- <?php foreach ($profile as $field): ?>
- <p>
- <?php if ($field->type != 'checkbox'): ?>
- <strong><?php print $field->title; ?></strong><br />
- <?php endif; ?>
- <?php print $field->value; ?>
- </p>
- <?php endforeach; ?>
|