Undefined array key warning realted to use of apply_filters_deprecated
-
I am receiving a large number of undefined array key warnings with the following stack trace:
PHP message: Warning: Undefined array key 0 in /var/www/wp-includes/plugin.php on line 661 [] [wp-content/plugins/cart-rest-api-for-woocommerce/includes/cocart-rest-functions.php:72 apply_filters_deprecated(), wp-content/plugins/cart-rest-api-for-woocommerce/includes/api/cocart/v2/cart/class-cocart-cart-controller.php:2949 cocart_deprecated_filter(), wp-includes/rest-api/class-wp-rest-server.php:1457 CoCart_Cart_V2_Controller->get_public_cart_schema(), wp-includes/rest-api/class-wp-rest-server.php:1398 WP_REST_Server->get_data_for_route(), wp-includes/rest-api/class-wp-rest-server.php:1227 WP_REST_Server->get_data_for_routes(), wp-includes/rest-api/class-wp-rest-server.php:1143 WP_REST_Server->get_index(), wp-includes/rest-api/class-wp-rest-server.php:990 WP_REST_Server->respond_to_request(), wp-content/plugins/woocommerce/includes/cli/class-wc-cli-runner.php:63 WP_REST_Server->dispatch(), /usr/local/bin/wp/vendor/wp-cli/wp-cli/php/class-wp-cli.php:337 WC_CLI_Runner::after_wp_load(), /usr/local/bin/wp/vendor/wp-cl...
I think this all starts because
WC_CLI_Runner::after_wp_load
initializes the REST APIEventually
cocart_deprecated_filter
callsapply_filters_deprecated
and passesarray()
in the$args
parameter.apply_filters_deprecated
expects$args
to be an array of arguments, and it incorrectly assumes that$args[0]
exists.Could
cocart_deprecated_filter
orCoCart_Cart_V2_Controller->get_public_cart_schema
be updated to accomocate this behavior fromapply_filters_deprecated
?https://core.trac.www.ads-software.com/browser/tags/6.0.3/src/wp-includes/plugin.php#L661
- The topic ‘Undefined array key warning realted to use of apply_filters_deprecated’ is closed to new replies.