diff options
author | cash <cash.costello@gmail.com> | 2011-09-24 16:08:04 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-09-24 16:08:04 -0400 |
commit | 61ad84e217b0a1bae8d607a1504c4b477d976ac5 (patch) | |
tree | fa3746cca5d7d5d1ca3b995d506b82d58572c68f | |
parent | fc5fd10695883a1385645dbb9a16db9e9e0df36c (diff) | |
download | elgg-61ad84e217b0a1bae8d607a1504c4b477d976ac5.tar.gz elgg-61ad84e217b0a1bae8d607a1504c4b477d976ac5.tar.bz2 |
Refs #3864 updated the two form bodies for edit profile fields
-rw-r--r-- | views/default/admin/appearance/profile_fields.php | 4 | ||||
-rw-r--r-- | views/default/forms/profile/fields/add.php | 8 | ||||
-rw-r--r-- | views/default/forms/profile/fields/reset.php | 2 |
3 files changed, 6 insertions, 8 deletions
diff --git a/views/default/admin/appearance/profile_fields.php b/views/default/admin/appearance/profile_fields.php index 7077687cc..8371ce83c 100644 --- a/views/default/admin/appearance/profile_fields.php +++ b/views/default/admin/appearance/profile_fields.php @@ -10,9 +10,7 @@ $reset = elgg_view_form('profile/fields/reset', array(), array()); $body = <<<__HTML $add $list -<div class="default_profile_reset"> - $reset -</div> +$reset __HTML; echo $body; diff --git a/views/default/forms/profile/fields/add.php b/views/default/forms/profile/fields/add.php index 7961037e6..c1d07d2ce 100644 --- a/views/default/forms/profile/fields/add.php +++ b/views/default/forms/profile/fields/add.php @@ -1,8 +1,6 @@ <?php /** - * Elgg profile index - * - * @package ElggProfile + * Add a new field to the set of custom profile fields */ $label_text = elgg_echo('profile:label'); @@ -20,9 +18,9 @@ $type_control = elgg_view('input/dropdown', array('name' => 'type', 'options_val $submit_control = elgg_view('input/submit', array('name' => elgg_echo('add'), 'value' => elgg_echo('add'))); $formbody = <<< END - <p>$label_text: $label_control + <div class="elgg-foot">$label_text: $label_control $type_text: $type_control - $submit_control</p> + $submit_control</div> END; echo autop(elgg_echo('profile:explainchangefields')); diff --git a/views/default/forms/profile/fields/reset.php b/views/default/forms/profile/fields/reset.php index 4e0f51dc6..c0bb1b7f4 100644 --- a/views/default/forms/profile/fields/reset.php +++ b/views/default/forms/profile/fields/reset.php @@ -3,8 +3,10 @@ * Reset profile fields form */ +echo '<div class="elgg-foot">'; $params = array( 'value' => elgg_echo('profile:resetdefault'), 'class' => 'elgg-button-cancel', ); echo elgg_view('input/submit', $params); +echo '</div>'; |