aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-10-26 07:16:11 -0400
committerCash Costello <cash.costello@gmail.com>2011-10-26 07:16:11 -0400
commitdeda57ffd5e91cd0a032d29ecbc0970b345bdb72 (patch)
treef2e3cd090348816d6d8811894059c8e493220581
parent01119f1713739c4d9b0c2aaa00168a498569c37f (diff)
downloadelgg-deda57ffd5e91cd0a032d29ecbc0970b345bdb72.tar.gz
elgg-deda57ffd5e91cd0a032d29ecbc0970b345bdb72.tar.bz2
Fixes #3926 updated spacing for edit profile field forms
-rw-r--r--languages/en.php6
-rw-r--r--views/default/admin/appearance/profile_fields/list.php2
-rw-r--r--views/default/forms/profile/fields/add.php4
3 files changed, 6 insertions, 6 deletions
diff --git a/languages/en.php b/languages/en.php
index 9c5d1701d..3216be5e7 100644
--- a/languages/en.php
+++ b/languages/en.php
@@ -393,11 +393,11 @@ $english = array(
'profile:label' => "Profile label",
'profile:type' => "Profile type",
'profile:editdefault:delete:fail' => 'Removed default profile item field failed',
- 'profile:editdefault:delete:success' => 'Default profile item deleted!',
- 'profile:defaultprofile:reset' => 'Default system profile reset',
+ 'profile:editdefault:delete:success' => 'Profile field deleted',
+ 'profile:defaultprofile:reset' => 'Profile fields reset to the system default',
'profile:resetdefault' => 'Reset default profile',
'profile:explainchangefields' => "You can replace the existing profile fields with your own using the form below. \n\n Give the new profile field a label, for example, 'Favorite team', then select the field type (eg. text, url, tags), and click the 'Add' button. To re-order the fields drag on the handle next to the field label. To edit a field label - click on the label's text to make it editable. \n\n At any time you can revert back to the default profile set up, but you will lose any information already entered into custom fields on profile pages.",
- 'profile:editdefault:success' => 'Item successfully added to default profile',
+ 'profile:editdefault:success' => 'New profile field added',
'profile:editdefault:fail' => 'Default profile could not be saved',
diff --git a/views/default/admin/appearance/profile_fields/list.php b/views/default/admin/appearance/profile_fields/list.php
index 3e287ceac..b9440a95d 100644
--- a/views/default/admin/appearance/profile_fields/list.php
+++ b/views/default/admin/appearance/profile_fields/list.php
@@ -26,7 +26,7 @@ if ($fieldlist) {
}
}
?>
-<ul id="elgg-profile-fields">
+<ul id="elgg-profile-fields" class="mvm">
<?php
$save = elgg_echo('save');
diff --git a/views/default/forms/profile/fields/add.php b/views/default/forms/profile/fields/add.php
index bd58ae381..1ea9c57a9 100644
--- a/views/default/forms/profile/fields/add.php
+++ b/views/default/forms/profile/fields/add.php
@@ -20,8 +20,8 @@ $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
- <div class="elgg-foot">$label_text: $label_control
- $type_text: $type_control
+ <div>$label_text: $label_control</div>
+ <div class="elgg-foot">$type_text: $type_control
$submit_control</div>
END;