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 | |
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
-rw-r--r-- | include/connections.php | 2 | ||||
-rw-r--r-- | view/pdl/mod_articles.pdl | 1 | ||||
-rw-r--r-- | view/pdl/mod_cal.pdl | 2 | ||||
-rw-r--r-- | view/pdl/mod_cards.pdl | 1 | ||||
-rw-r--r-- | view/pdl/mod_cloud.pdl | 2 | ||||
-rw-r--r-- | view/pdl/mod_photos.pdl | 2 | ||||
-rw-r--r-- | view/pdl/mod_wiki.pdl | 2 |
7 files changed, 7 insertions, 5 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, diff --git a/view/pdl/mod_articles.pdl b/view/pdl/mod_articles.pdl index 3e77ced4c..490917358 100644 --- a/view/pdl/mod_articles.pdl +++ b/view/pdl/mod_articles.pdl @@ -1,4 +1,5 @@ [region=aside] +[widget=profile][/widget] [widget=archive][var=articles]1[/var][/widget] [widget=categories][var=articles]1[/var][/widget] [widget=tasklist][/widget] diff --git a/view/pdl/mod_cal.pdl b/view/pdl/mod_cal.pdl index 7e15fc869..d7e5d29f3 100644 --- a/view/pdl/mod_cal.pdl +++ b/view/pdl/mod_cal.pdl @@ -1,5 +1,5 @@ [region=aside] -[widget=fullprofile][/widget] +[widget=profile][/widget] [/region] [region=right_aside] [widget=notifications][/widget] diff --git a/view/pdl/mod_cards.pdl b/view/pdl/mod_cards.pdl index f0403e380..fd08121fc 100644 --- a/view/pdl/mod_cards.pdl +++ b/view/pdl/mod_cards.pdl @@ -1,4 +1,5 @@ [region=aside] +[widget=profile][/widget] [widget=categories][var=cards]1[/var][/widget] [widget=tasklist][/widget] [widget=notes][/widget] diff --git a/view/pdl/mod_cloud.pdl b/view/pdl/mod_cloud.pdl index 44ef1e4fc..7f40e7ea0 100644 --- a/view/pdl/mod_cloud.pdl +++ b/view/pdl/mod_cloud.pdl @@ -1,5 +1,5 @@ [region=aside] -[widget=vcard][/widget] +[widget=profile][/widget] [widget=categories][var=files]1[/var][/widget] [/region] [region=right_aside] diff --git a/view/pdl/mod_photos.pdl b/view/pdl/mod_photos.pdl index 6a3d30b1c..bdcc087f3 100644 --- a/view/pdl/mod_photos.pdl +++ b/view/pdl/mod_photos.pdl @@ -1,5 +1,5 @@ [region=aside] -[widget=vcard][/widget] +[widget=profile][/widget] [widget=photo_albums][/widget] [/region] [region=right_aside] diff --git a/view/pdl/mod_wiki.pdl b/view/pdl/mod_wiki.pdl index be86be7e3..db8faa0d9 100644 --- a/view/pdl/mod_wiki.pdl +++ b/view/pdl/mod_wiki.pdl @@ -1,5 +1,5 @@ [region=aside] -[widget=vcard][/widget] +[widget=profile][/widget] [widget=wiki_pages][/widget] [/region] [region=right_aside] |