Bugfix
This commit is contained in:
parent
5393cfeafe
commit
87694c00d2
@ -334,11 +334,12 @@ function display_flat_link_list() {
|
|||||||
foreach(array_filter($flat_link_list, 'flat_link_list_filter') as $link) {
|
foreach(array_filter($flat_link_list, 'flat_link_list_filter') as $link) {
|
||||||
$is_broken = '';
|
$is_broken = '';
|
||||||
$comment = '';
|
$comment = '';
|
||||||
foreach($acts as $act) {
|
foreach(array_reverse($acts) as $act) {
|
||||||
$a = explode(' ', $act);
|
$a = explode(' ', $act);
|
||||||
if ($a[2] == $link) {
|
if ($a[2] == $link) {
|
||||||
if ($a[3] == 'broken') $is_broken = 'checked';
|
if ($a[3] == 'broken') $is_broken = 'checked';
|
||||||
if (!empty($a[4])) $comment = $a[4];
|
if (!empty($a[4])) $comment = $a[4];
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$h .= "<div><a href=\"./" . $link . "\">" . $link . "</a>";
|
$h .= "<div><a href=\"./" . $link . "\">" . $link . "</a>";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user