In /views/submission-form.php:11 $_GET is undefined so you should wrap it in isset.
<?php if ( isset( $_GET['success'] ) && $_GET['success'] == '1') { ?>
Also noticed it in a few other locations, should get that Settings API in place ;).
In /views/submission-form.php:11 $_GET is undefined so you should wrap it in isset.
<?php if ( isset( $_GET['success'] ) && $_GET['success'] == '1') { ?>
Also noticed it in a few other locations, should get that Settings API in place ;).
Sorry, but just noticed your also still using attribute_escape, that is now a deprecated function and should be updated to esc_attr.
This topic has been closed to new replies.