PHP Notice for $_GET keys: siteId and email
-
Hello,
your plugin generate PHP notices about not defined keys in array $_GET. Problem is in the file Comm100LiveChatAdmin.class.php on the lines 132 and 133:
$query_site_id = $_GET[‘siteId’];
$query_email = $_GET[’email’];This keys not must be send by request. I recommended change this lines to:
$query_site_id = isset($_GET[‘siteId’]) ? $_GET[‘siteId’] : null;
$query_email = isset($_GET[’email’]) ? $_GET[’email’] : null;Thank you very much.
Best regard
Jan
- The topic ‘PHP Notice for $_GET keys: siteId and email’ is closed to new replies.