You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If clicking on "Tools > Send System Info" you're presented with a PHP Warning: Notice: Undefined index: tab in ...\wp-content\plugins\send-system-info\views\send-system-info.php on line 44
This is because there is no $_GET["tab"] present in the url.
Solution
Define $tab with a ternary operator so there's a fallback.
The text was updated successfully, but these errors were encountered:
If clicking on "Tools > Send System Info" you're presented with a PHP Warning:
Notice: Undefined index: tab in ...\wp-content\plugins\send-system-info\views\send-system-info.php on line 44
This is because there is no
$_GET["tab"]
present in the url.Solution
Define $tab with a ternary operator so there's a fallback.
The text was updated successfully, but these errors were encountered: