mirror of
https://github.com/friendica/friendica
synced 2025-04-22 11:10:11 +00:00
added curely braces + TODO for maybe avoiding multi-lined if() blocks as it confuses #3254
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
f94a10bf00
commit
e4ad359f5a
2 changed files with 21 additions and 12 deletions
|
@ -2159,8 +2159,8 @@ class dfrn {
|
|||
$title = $attributes->textContent;
|
||||
}
|
||||
}
|
||||
if (($rel != "") AND ($href != ""))
|
||||
switch($rel) {
|
||||
if (($rel != "") AND ($href != "")) {
|
||||
switch ($rel) {
|
||||
case "alternate":
|
||||
$item["plink"] = $href;
|
||||
break;
|
||||
|
@ -2170,9 +2170,10 @@ class dfrn {
|
|||
$item["attach"] .= ",";
|
||||
}
|
||||
|
||||
$item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
|
||||
$item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue