aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/userdetails.php
diff options
context:
space:
mode:
authorpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-27 20:42:13 +0000
committerpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-27 20:42:13 +0000
commitaf6a52a90ee793c2597e71324472dd6cc140ae00 (patch)
treea0ab44532fb69c44998bfa49ff0455a66190c5f2 /mod/profile/views/default/profile/userdetails.php
parentcfbd50961b7db8337adce45651b305b9635b91b7 (diff)
downloadelgg-af6a52a90ee793c2597e71324472dd6cc140ae00.tar.gz
elgg-af6a52a90ee793c2597e71324472dd6cc140ae00.tar.bz2
profile and dashboard pages altered for 3 widget columns
git-svn-id: https://code.elgg.org/elgg/trunk@1556 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views/default/profile/userdetails.php')
-rw-r--r--mod/profile/views/default/profile/userdetails.php40
1 files changed, 23 insertions, 17 deletions
diff --git a/mod/profile/views/default/profile/userdetails.php b/mod/profile/views/default/profile/userdetails.php
index 39de3c634..8b28750c5 100644
--- a/mod/profile/views/default/profile/userdetails.php
+++ b/mod/profile/views/default/profile/userdetails.php
@@ -56,6 +56,22 @@
<td>
<div id="profile_info_column_middle" >
+ <?php
+
+ if ($vars['entity']->canEdit()) {
+
+ ?>
+ <p class="profile_info_edit_buttons">
+ <a href="<?php echo $vars['url']; ?>mod/profile/edit.php"><?php echo elgg_echo("profile:editdetails"); ?></a>
+ </p>
+ <?php
+
+ }
+
+ ?>
+
+
+
<?php
// display the users name
@@ -101,29 +117,19 @@
?>
</div><!-- /#profile_info_column_middle -->
-
</td>
-<td>
- <div id="profile_info_column_right">
- <?php
-
- if ($vars['entity']->canEdit()) {
-
- ?>
- <p class="profile_info_edit_buttons">
- <a href="<?php echo $vars['url']; ?>mod/profile/edit.php"><?php echo elgg_echo("profile:editdetails"); ?></a>
- </p>
- <?php
+</tr>
- }
-
- ?>
-
-
+<tr>
+<td colspan="2">
+ <div id="profile_info_column_right">
<p><b><?php echo elgg_echo("profile:aboutme"); ?></b><br /><?php echo autop($vars['entity']->description); ?></p>
</div><!-- /#profile_info_column_right -->
+
</td>
</tr>
+
+
</table>