From 76468d6516c54830fe495afa7c9834cb22e83071 Mon Sep 17 00:00:00 2001 From: Daniel Bachhuber Date: Wed, 17 Oct 2018 22:19:20 +0000 Subject: [PATCH] REST API: Fix version number in `_doing_it_wrong()` call. `_doing_it_wrong()`, indeed. Props joehoyle. See #39965. git-svn-id: https://develop.svn.wordpress.org/branches/5.0@43741 602fd350-edb4-49c9-b593-d223f7449a82 --- .../rest-api/endpoints/class-wp-rest-search-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php index eb5493a9da..8aaf9c6476 100644 --- a/src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php +++ b/src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php @@ -70,7 +70,7 @@ class WP_REST_Search_Controller extends WP_REST_Controller { if ( ! $search_handler instanceof WP_REST_Search_Handler ) { /* translators: %s: PHP class name */ - _doing_it_wrong( __METHOD__, sprintf( __( 'REST search handlers must extend the %s class.' ), 'WP_REST_Search_Handler' ), '5.5.0' ); + _doing_it_wrong( __METHOD__, sprintf( __( 'REST search handlers must extend the %s class.' ), 'WP_REST_Search_Handler' ), '5.0.0' ); continue; }