mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
fix 2 warnings about continue 2
This commit is contained in:
parent
0825302a54
commit
f0a6e34106
@ -93,7 +93,7 @@ foreach($trs[2] as $n => $tr)
|
||||
if ($commented)
|
||||
{
|
||||
echo $tr;
|
||||
continue;
|
||||
continue 2;
|
||||
}
|
||||
echo "\t\t\t\t\t<!-- ".trim($matches[3])." -->\n";
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ foreach($lines as $l => $line)
|
||||
break;
|
||||
case 'memberUid':
|
||||
$member_dn = 'uid='.$value.','.preg_replace($replace,$replace_with,$dn);
|
||||
if (!in_array('dn: '.$member_dn,$lines)) continue; // member does not exist --> ignore him!
|
||||
if (!in_array('dn: '.$member_dn,$lines)) continue 2; // member does not exist --> ignore him!
|
||||
$members[] = 'member: '.$member_dn;
|
||||
// fall-through
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user