MyBB Community Forums

Full Version: Notice: Undefined index: action in /home/neon/public_html/alerts.php on line 11
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Need help with myalerts. cant fix with anything. if anyone had the same issue let me know the fix!
The issue is the following line:
https://github.com/MyBBStuff/MyAlerts/bl...ts.php#L11
if ($_GET['action'] == 'modal') {

Change to:
if (!empty($_GET['action']) && $_GET['action'] == 'modal') {
thanks a lot to Omar G, the fix works for me.