Add missing break statements in include/conversation
- Remove bad variable initialization in format_like()
This commit is contained in:
parent
04b742a97d
commit
9b27d049dc
|
@ -210,8 +210,8 @@ function localize_item(&$item)
|
||||||
foreach ($links->link as $l) {
|
foreach ($links->link as $l) {
|
||||||
$atts = $l->attributes();
|
$atts = $l->attributes();
|
||||||
switch ($atts['rel']) {
|
switch ($atts['rel']) {
|
||||||
case "alternate": $Blink = $atts['href'];
|
case "alternate": $Blink = $atts['href']; break;
|
||||||
case "photo": $Bphoto = $atts['href'];
|
case "photo": $Bphoto = $atts['href']; break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1044,7 +1044,6 @@ function format_like($cnt, array $arr, $type, $id) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$phrase = '';
|
|
||||||
if ($cnt > 1) {
|
if ($cnt > 1) {
|
||||||
$total = count($arr);
|
$total = count($arr);
|
||||||
if ($total < MAX_LIKERS) {
|
if ($total < MAX_LIKERS) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user