diff options
author | kondou <kondou@ts.unde.re> | 2013-08-08 17:03:19 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-25 21:04:49 +0200 |
commit | 4521b54c672d4111ee578cb7049aca53c79a5eef (patch) | |
tree | 61079b79bc5d793c8f37675cba0a584d345cdf3d /settings/templates/personal.php | |
parent | 252548c62cf099e5186ffc323e3cf9494fae3768 (diff) | |
download | nextcloud-server-4521b54c672d4111ee578cb7049aca53c79a5eef.tar.gz nextcloud-server-4521b54c672d4111ee578cb7049aca53c79a5eef.zip |
Have /avatar.php as a central avatar-point
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index e0e91cb7de4..f487c847baa 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -84,12 +84,12 @@ if($_['passwordChangeSupported']) { ?> <?php if ($_['avatar'] === "local"): ?> -<form id="avatar"> +<form id="avatar" method="post" action="<?php p(\OC_Helper::linkToRoute('settings_ajax_newavatar')); ?>"> <fieldset class="personalblock"> <legend><strong><?php p($l->t('Avatar')); ?></strong></legend> <img src="<?php print_unescaped(link_to('', 'avatar.php').'?user='.OC_User::getUser().'&size=128'); ?>"><br> <em><?php p($l->t('Your avatar has to be a square and either a PNG or JPG image')); ?></em><br> - <div class="inlineblock button" id="uploadavatar"><?php p($l->t('Upload a new avatar')); ?></div> + <input type="file" class="inlineblock button" name="files[]" id="uploadavatar" value="<?php p($l->t('Upload a new avatar')); ?>"> <div class="inlineblock button" id="selectavatar"><?php p($l->t('Select a new avatar from your files')); ?></div> <div class="inlineblock button" id="removeavatar"><?php p($l->t('Remove my avatar')); ?></div> </fieldset> |