Closed Spreeuw closed 6 years ago
I got this after updating the plugin to 2.4.1: Notice: Undefined index: wp_sponsor_link_behaviour in /wp-content/plugins/wp-sponsors/includes/class-wp-sponsors.php on line 334 https://github.com/studioespresso/wp-sponsors/blob/master/includes/class-wp-sponsors.php#L334
Notice: Undefined index: wp_sponsor_link_behaviour in /wp-content/plugins/wp-sponsors/includes/class-wp-sponsors.php on line 334
There's a check for the other $_POST values but not wp_sponsor_link_behaviour
$_POST
wp_sponsor_link_behaviour
quick fix:
$link_behaviour = isset($_POST['wp_sponsor_link_behaviour']) ? '1' : '0';
Fixed in the today's update.
I got this after updating the plugin to 2.4.1:
Notice: Undefined index: wp_sponsor_link_behaviour in /wp-content/plugins/wp-sponsors/includes/class-wp-sponsors.php on line 334
https://github.com/studioespresso/wp-sponsors/blob/master/includes/class-wp-sponsors.php#L334There's a check for the other
$_POST
values but notwp_sponsor_link_behaviour
quick fix: