Docs: Fix the `@param` type for `wp_make_plugin_file_tree()`.
`$plugin_editable_files` is an `array`, not a `string`. Props subrataemfluence. Fixes #45593. Built from https://develop.svn.wordpress.org/trunk@44464 git-svn-id: http://core.svn.wordpress.org/trunk@44295 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5b3e08020b
commit
fe837d19a7
|
@ -380,7 +380,7 @@ function wp_print_theme_file_tree( $tree, $level = 2, $size = 1, $index = 1 ) {
|
|||
* @since 4.9.0
|
||||
* @access private
|
||||
*
|
||||
* @param string $plugin_editable_files List of plugin file paths.
|
||||
* @param array $plugin_editable_files List of plugin file paths.
|
||||
* @return array Tree structure for listing plugin files.
|
||||
*/
|
||||
function wp_make_plugin_file_tree( $plugin_editable_files ) {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.1-alpha-44463';
|
||||
$wp_version = '5.1-alpha-44464';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue