Warning on admin dashboard that array key ‘page is undefined’
-
The Crisp plugin is throwing a small PHP warning, not a big issue but better to resolve them.
The warning is:
Warning: Undefined array key "page" in PATH/TO/plugins/crisp/crisp.php on line 70
This is happening on the dashboard, or other urls where there is no
page
query param in the url.The solution could be (crips.php on line 70):
if (empty($website_id) && (!isset($_GET["page"]) || $_GET["page"] != plugin_basename(__FILE__))) {
- The topic ‘Warning on admin dashboard that array key ‘page is undefined’’ is closed to new replies.