mirror of
https://github.com/friendica/friendica
synced 2025-04-19 10:30:10 +00:00
adapted profile pic resize to 300px for whole system
This commit is contained in:
parent
95f9337e0e
commit
cb75c40f4e
13 changed files with 21 additions and 21 deletions
|
@ -1450,8 +1450,8 @@ class OStatus
|
|||
$attributes = [
|
||||
"rel" => "avatar",
|
||||
"type" => "image/jpeg", // To-Do?
|
||||
"media:width" => 175,
|
||||
"media:height" => 175,
|
||||
"media:width" => 300,
|
||||
"media:height" => 300,
|
||||
"href" => $owner["photo"]];
|
||||
XML::addElement($doc, $author, "link", "", $attributes);
|
||||
|
||||
|
@ -1769,8 +1769,8 @@ class OStatus
|
|||
$attributes = [
|
||||
"rel" => "avatar",
|
||||
"type" => "image/jpeg", // To-Do?
|
||||
"media:width" => 175,
|
||||
"media:height" => 175,
|
||||
"media:width" => 300,
|
||||
"media:height" => 300,
|
||||
"href" => $contact["photo"]];
|
||||
XML::addElement($doc, $object, "link", "", $attributes);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue