diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-03-05 22:05:30 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-03-07 21:46:42 +0100 |
commit | 97ab706a6a1d85f9e37589c9f88cedbdfa817f6e (patch) | |
tree | d57a7508c0a57f4b0f90177d78750727e99c2a71 /apps | |
parent | 46aa011ef90c02098ddfa75a93fe9bf2759b622a (diff) | |
download | nextcloud-server-97ab706a6a1d85f9e37589c9f88cedbdfa817f6e.tar.gz nextcloud-server-97ab706a6a1d85f9e37589c9f88cedbdfa817f6e.zip |
Contacts: No random token for contactphoto
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/templates/part.contactphoto.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/templates/part.contactphoto.php b/apps/contacts/templates/part.contactphoto.php index 9e3f5876cd1..8107650d161 100644 --- a/apps/contacts/templates/part.contactphoto.php +++ b/apps/contacts/templates/part.contactphoto.php @@ -3,7 +3,7 @@ $id = $_['id']; $wattr = isset($_['width'])?'width="'.$_['width'].'"':''; $hattr = isset($_['height'])?'height="'.$_['height'].'"':''; ?> -<img class="loading" id="contacts_details_photo" <?php echo $wattr; ?> <?php echo $hattr; ?> src="<?php echo OC_Helper::linkToAbsolute('contacts', 'photo.php'); ?>?id=<?php echo $id; ?>&refresh=<?php echo rand(); ?>" /> +<img class="loading" id="contacts_details_photo" <?php echo $wattr; ?> <?php echo $hattr; ?> src="<?php echo OC_Helper::linkToAbsolute('contacts', 'photo.php'); ?>?id=<?php echo $id; ?>" /> <progress id="contacts_details_photo_progress" style="display:none;" value="0" max="100">0 %</progress> |