PluginProbe
Gutenberg / 12.1.0
Gutenberg v12.1.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
← All changes | lib/class-wp-rest-block-editor-settings-controller.php +1 -1 12.6.012.1.0 View file →
@@ -75,9 +75,9 @@
75 75 * @return WP_Error|WP_REST_Response Response object on success, or WP_Error object on failure.
76 76 */
77 77 public function get_items( $request ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis
78 78 $editor_context = new WP_Block_Editor_Context();
79 - $settings = get_block_editor_settings( array(), $editor_context );
79 + $settings = gutenberg_get_block_editor_settings( array(), $editor_context );
80 80
81 81 return rest_ensure_response( $settings );
82 82 }
83 83