diff options
author | Mario Vavti <mario@mariovavti.com> | 2021-12-03 16:25:42 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2021-12-03 16:25:42 +0100 |
commit | efc203d95831684b0b70383cd56c0b434acb6c40 (patch) | |
tree | 089f9b90deb525a82c96fff83824934815c9242f /include | |
parent | fd433b3eb6d18e64b9a0ff4d3f09d762dafe7078 (diff) | |
download | volse-hubzilla-efc203d95831684b0b70383cd56c0b434acb6c40.tar.gz volse-hubzilla-efc203d95831684b0b70383cd56c0b434acb6c40.tar.bz2 volse-hubzilla-efc203d95831684b0b70383cd56c0b434acb6c40.zip |
fix blured profile images and pdl files
Diffstat (limited to 'include')
-rw-r--r-- | include/connections.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connections.php b/include/connections.php index 6dba06189..0611377ab 100644 --- a/include/connections.php +++ b/include/connections.php @@ -127,7 +127,7 @@ function vcard_from_xchan($xchan, $observer = null, $mode = '') { return replace_macros(get_markup_template('xchan_vcard.tpl'),array( '$name' => $xchan['xchan_name'], '$addr' => (($xchan['xchan_addr']) ? $xchan['xchan_addr'] : $xchan['xchan_url']), - '$photo' => $xchan['xchan_photo_m'], + '$photo' => $xchan['xchan_photo_l'], '$follow' => (($xchan['xchan_addr']) ? $xchan['xchan_addr'] : $xchan['xchan_url']), '$link' => zid($xchan['xchan_url']), '$connect' => $connect, |