Hello all,
I have just come across this code:
function test(){
//...
if ( $profilerule == "profile" and $operator != "=" ) {
verbatimlogit('false');
break;
}
//...
}
Is it just me or will that break not work there?! There isn't even a loop. A continue work either, right?
I just want a confirmation here as I am pretty sure this is the case.