diff options
author | Janek Lasocki-Biczysko <j.lasocki-biczysko@intrallect.com> | 2012-02-03 09:27:31 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-02-08 07:23:07 -0500 |
commit | 4cb2be135171e8e42b70f0165cfbb6cc6905cd8e (patch) | |
tree | 4e5f260e346edd81200eea80d6082079d864aef9 /pages | |
parent | fe22ee87a5199b5ac9f736b5374f56ec909106ea (diff) | |
download | elgg-4cb2be135171e8e42b70f0165cfbb6cc6905cd8e.tar.gz elgg-4cb2be135171e8e42b70f0165cfbb6cc6905cd8e.tar.bz2 |
Fixes #4350 (Edit Avatar - Crop button is misleading, should be hidden if
avatar hasn't been created yet)
Diffstat (limited to 'pages')
-rw-r--r-- | pages/avatar/edit.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pages/avatar/edit.php b/pages/avatar/edit.php index eef8f8f8b..c71633b8b 100644 --- a/pages/avatar/edit.php +++ b/pages/avatar/edit.php @@ -10,8 +10,13 @@ elgg_set_context('profile_edit'); $title = elgg_echo('avatar:edit'); -$content = elgg_view('core/avatar/upload', array('entity' => elgg_get_page_owner_entity())); -$content .= elgg_view('core/avatar/crop', array('entity' => elgg_get_page_owner_entity())); +$entity = elgg_get_page_owner_entity(); +$content = elgg_view('core/avatar/upload', array('entity' => $entity)); + +// only offer the crop view if an avatar has been uploaded +if (isset($entity->icontime)) { + $content .= elgg_view('core/avatar/crop', array('entity' => $entity)); +} $params = array( 'content' => $content, |