diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 16:58:10 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 16:58:10 +0000 |
commit | c10f7d3cf0aa68d2325199ba787702e125907c11 (patch) | |
tree | ae1b1a58936f6b177b27708b7eda46cbfa2fdf87 /views/default/forms/profile | |
parent | e036de6ceab5f57b0f502b8400ab05e32e96562b (diff) | |
download | elgg-c10f7d3cf0aa68d2325199ba787702e125907c11.tar.gz elgg-c10f7d3cf0aa68d2325199ba787702e125907c11.tar.bz2 |
Refs #2032 core forms use divs
git-svn-id: http://code.elgg.org/elgg/trunk@8164 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/forms/profile')
-rw-r--r-- | views/default/forms/profile/edit.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/views/default/forms/profile/edit.php b/views/default/forms/profile/edit.php index 108e7f9f2..4de6c47fe 100644 --- a/views/default/forms/profile/edit.php +++ b/views/default/forms/profile/edit.php @@ -7,10 +7,10 @@ ?> -<p> +<div> <label><?php echo elgg_echo('user:name:label'); ?></label> <?php echo elgg_view('input/text',array('internalname' => 'name', 'value' => $vars['entity']->name)); ?> -</p> +</div> <?php $profile_fields = elgg_get_config('profile_fields'); @@ -37,7 +37,7 @@ if (is_array($profile_fields) && count($profile_fields) > 0) { } ?> -<p> +<div> <label><?php echo elgg_echo("profile:{$shortname}") ?></label> <?php $params = array( @@ -51,14 +51,14 @@ if (is_array($profile_fields) && count($profile_fields) > 0) { ); echo elgg_view('input/access', $params); ?> -</p> +</div> <?php } } ?> -<p> +<div> <?php echo elgg_view('input/hidden', array('internalname' => 'guid', 'value' => $vars['entity']->guid)); echo elgg_view('input/submit', array('value' => elgg_echo('save'))); ?> -</p> +</div> |