REST API: Use correct version in `_doing_it_wrong()` call.

Props TobiasBg.
Fixes #34490.

git-svn-id: https://develop.svn.wordpress.org/trunk@35434 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-10-29 20:11:22 +00:00
parent 42e7bfd9b5
commit 170d361287
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ function register_rest_route( $namespace, $route, $args = array(), $override = f
* and namespace indexes. If you really need to register a
* non-namespaced route, call `WP_REST_Server::register_route` directly.
*/
_doing_it_wrong( 'register_rest_route', 'Routes must be namespaced with plugin name and version', 'WPAPI-2.0' );
_doing_it_wrong( 'register_rest_route', 'Routes must be namespaced with plugin name and version', '4.4.0' );
$full_route = '/' . trim( $route, '/' );
}