diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-13 13:44:49 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-13 13:44:49 +0000 |
commit | c7d73bc6db9d52a918f0d4ee82d802032f14729c (patch) | |
tree | d37f8a8601cd9151b887ac8a1f359526173bc04d /views | |
parent | 7fab6390acd5cfcdd8458d43eae4ff984aefae43 (diff) | |
download | elgg-c7d73bc6db9d52a918f0d4ee82d802032f14729c.tar.gz elgg-c7d73bc6db9d52a918f0d4ee82d802032f14729c.tar.bz2 |
loose text strings cleaned up, extra container divs added
git-svn-id: https://code.elgg.org/elgg/trunk@2742 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/account/forms/forgotten_password.php | 2 | ||||
-rw-r--r-- | views/default/comments/forms/edit.php | 4 | ||||
-rw-r--r-- | views/default/export/entity.php | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/views/default/account/forms/forgotten_password.php b/views/default/account/forms/forgotten_password.php index 079d0f672..767812759 100644 --- a/views/default/account/forms/forgotten_password.php +++ b/views/default/account/forms/forgotten_password.php @@ -14,6 +14,6 @@ $form_body .= "<p><b>". elgg_echo('username') . "</b> " . elgg_view('input/text', array('internalname' => 'username')) . "</p>"; $form_body .= "<p>" . elgg_view('input/submit', array('value' => elgg_echo('request'))) . "</p>"; ?> -<div id="forgotten_box"> +<div class="contentWrapper"> <?php echo elgg_view('input/form', array('action' => "{$vars['url']}actions/user/requestnewpassword", 'body' => $form_body)); ?> </div>
\ No newline at end of file diff --git a/views/default/comments/forms/edit.php b/views/default/comments/forms/edit.php index 5da1831e2..706d49967 100644 --- a/views/default/comments/forms/edit.php +++ b/views/default/comments/forms/edit.php @@ -14,9 +14,9 @@ if (isset($vars['entity']) && isloggedin()) {
- $form_body = "<p><label>".elgg_echo("generic_comments:text")."<br />" . elgg_view('input/longtext',array('internalname' => 'generic_comment')) . "</label></p>";
+ $form_body = "<div class=\"contentWrapper\"><p><label>".elgg_echo("generic_comments:text")."<br />" . elgg_view('input/longtext',array('internalname' => 'generic_comment')) . "</label></p>";
$form_body .= "<p>" . elgg_view('input/hidden', array('internalname' => 'entity_guid', 'value' => $vars['entity']->getGUID()));
- $form_body .= elgg_view('input/submit', array('value' => elgg_echo("save"))) . "</p>";
+ $form_body .= elgg_view('input/submit', array('value' => elgg_echo("save"))) . "</p></div>";
echo elgg_view('input/form', array('body' => $form_body, 'action' => "{$vars['url']}action/comments/add"));
diff --git a/views/default/export/entity.php b/views/default/export/entity.php index 851d04870..d35f0955f 100644 --- a/views/default/export/entity.php +++ b/views/default/export/entity.php @@ -20,6 +20,7 @@ $exportable_values = $entity->getExportableValues(); ?> +<div class="contentWrapper"> <div> <?php foreach ($entity as $k => $v) @@ -86,4 +87,5 @@ } ?> </div> -<?php } ?>
\ No newline at end of file +<?php } ?> +</div>
\ No newline at end of file |