PHP notice
-
I’m seeing errors in my PHP log when viewing pages with this plugin installed.
Error: Undefined index: insert
Location: wp-content/plugins/wp-word-count/public/class-wpwc-public.php:123Here’s the current code:
public function wpwordcount_reading_time_before_content($content) { global $post; if ($post && get_option('wpwc_reading_time')['insert'] == 'Y') {
The fix is to check the option variable before accessing the ‘insert’ key:
public function wpwordcount_reading_time_before_content($content) { global $post; $reading_time = get_option('wpwc_reading_time'); if ($post && is_array($reading_time) && $reading_time['insert'] == 'Y') {
- The topic ‘PHP notice’ is closed to new replies.