Hello,
on my Arch-System, which updated php to 7.3, I now receive the warnings
*Warning*: "continue" targeting switch is equivalent to "break". Did you
mean to use "continue 2"? in *pmwiki.php* on line *739*

*Warning*: "continue" targeting switch is equivalent to "break". Did you
mean to use "continue 2"? in *pmwiki.php* on line *742*

looking at the code, i saw that there is no difference in the function if
"continue" would be replaced by "break". That would avoid the different
meaning of "continue" in "C" and "php".
diff for pmwki.php:

739c739
<         continue;
---
>         break;
742c742
<         continue;
---
>         break;
Hope this helps,

jürgen
_______________________________________________
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to