Online Tips n Tricks

Full Version: Fix My BB plugins myadvertisements error [2] "continue" target ..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Error : "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"
Plugin : My Advertisements
Php Version : 7.4

[Image: mybb-stack-220x234.png]

How to fix : 
Go to line  657 ,  704 ,  752, 804 

Replace : 
Code:
continue;
                    }

By
Code:
break;
                    }


Have fun !!!

#mybb #error