diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-06-27 07:26:16 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-06-27 07:26:16 -0400 |
commit | d450c043eeabbe5d0d5466cba59045fd3a1888c9 (patch) | |
tree | 0702d87fb9d50193119cbd27422490bc6952401a /views/default/forms/plugins | |
parent | e82534d0bceb80f7a9e7ba8f00748ee1eb32b214 (diff) | |
download | elgg-d450c043eeabbe5d0d5466cba59045fd3a1888c9.tar.gz elgg-d450c043eeabbe5d0d5466cba59045fd3a1888c9.tar.bz2 |
Refs #3407 using elgg-form and elgg-foot in core forms. Plugins next
Diffstat (limited to 'views/default/forms/plugins')
-rw-r--r-- | views/default/forms/plugins/settings/save.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/forms/plugins/settings/save.php b/views/default/forms/plugins/settings/save.php index efe6d7792..c3d8f231f 100644 --- a/views/default/forms/plugins/settings/save.php +++ b/views/default/forms/plugins/settings/save.php @@ -24,8 +24,8 @@ if (elgg_view_exists("{$type}settings/$plugin_id/edit")) { echo elgg_view("plugins/$plugin_id/{$type}settings", $vars); } -echo "<div>"; +echo '<div class="elgg-foot">'; echo elgg_view('input/hidden', array('name' => 'plugin_id', 'value' => $plugin_id)); echo elgg_view('input/hidden', array('name' => 'user_guid', 'value' => $user_guid)); echo elgg_view('input/submit', array('value' => elgg_echo('save'))); -echo "</div>"; +echo '</div>'; |