Hello spyros,
I have updated to 1.0.4 and I can confirm that the options.php error is gone, and so is undefined notice on the admin page of the plugin (the one on the line 119).
On line 391 there is no isset()… so I still get the error.
Line 391 on 1.0.4:
if ($_GET[‘page’] == ‘wpfai’) {
Proposed change:
if (isset($_GET[‘page’]) && $_GET[‘page’] == ‘wpfai’) {
Just a friendly reminder ??
thanks,
Jesus (MasDeWeb)