PHP warning on Eventin helper.php file when searching for events
-
PHP warnings on helper.php Warning: Attempt to read property "slug" on array in /wp-content/plugins/wp-event-solution/utils/helper.php on line 1484 // Original code: foreach ( $terms as $value ) { $location_data[ $value->slug ] = $value->name; } // FIX : Add a check if is_object() && property_exists() foreach ( $terms as $value ) { if (is_object($value) && property_exists($value, 'slug') && property_exists($value, 'name')) { $location_data[$value->slug] = $value->name; } }
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.