mirror of
https://github.com/friendica/friendica
synced 2024-11-13 02:22:53 +00:00
Converted multiple single-comment (//) to multi-line comment block (/* */)
This commit is contained in:
parent
b996712ef7
commit
15d8341d9a
1 changed files with 5 additions and 2 deletions
|
@ -543,8 +543,11 @@ class ParseUrl
|
||||||
{
|
{
|
||||||
if (!empty($siteinfo['images'])) {
|
if (!empty($siteinfo['images'])) {
|
||||||
array_walk($siteinfo['images'], function (&$image) use ($page_url) {
|
array_walk($siteinfo['images'], function (&$image) use ($page_url) {
|
||||||
// According to the specifications someone could place a picture url into the content field as well.
|
/*
|
||||||
// But this doesn't seem to happen in the wild, so we don't cover it here.
|
* According to the specifications someone could place a picture
|
||||||
|
* URL into the content field as well. But this doesn't seem to
|
||||||
|
* happen in the wild, so we don't cover it here.
|
||||||
|
*/
|
||||||
if (!empty($image['url'])) {
|
if (!empty($image['url'])) {
|
||||||
$image['url'] = self::completeUrl($image['url'], $page_url);
|
$image['url'] = self::completeUrl($image['url'], $page_url);
|
||||||
$photodata = Images::getInfoFromURLCached($image['url']);
|
$photodata = Images::getInfoFromURLCached($image['url']);
|
||||||
|
|
Loading…
Reference in a new issue