Debugs/errors in oqey gallery
Undefined Index The first and third are the same problem: if($_GET[‘type’] == “oqeygallery”){} and if(is_admin() && ($_GET[‘page’]==’oQeysettings’… Basically are: if ( $_GET[‘foo’] == ‘bar’ ) The problme is that $_GET[‘foo’] is not set. That is, the $_GET array does not have a ‘foo’ key. The solution is to wrap $_GET[‘foo’] in an isset() conditional: if … Read more