aboutsummaryrefslogtreecommitdiff
path: root/views/default/forms/profile/edit.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 16:58:10 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 16:58:10 +0000
commitc10f7d3cf0aa68d2325199ba787702e125907c11 (patch)
treeae1b1a58936f6b177b27708b7eda46cbfa2fdf87 /views/default/forms/profile/edit.php
parente036de6ceab5f57b0f502b8400ab05e32e96562b (diff)
downloadelgg-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/edit.php')
-rw-r--r--views/default/forms/profile/edit.php12
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>