Add a missing `@return` tag to the DocBlock for `uninstall_plugin().
See #32246. Built from https://develop.svn.wordpress.org/trunk@32340 git-svn-id: http://core.svn.wordpress.org/trunk@32311 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
87e149a19f
commit
e7e93f50cf
|
@ -944,6 +944,7 @@ function is_uninstallable_plugin($plugin) {
|
|||
* @since 2.7.0
|
||||
*
|
||||
* @param string $plugin Relative plugin path from Plugin Directory.
|
||||
* @return true True if a plugin's uninstall.php file has been found and included.
|
||||
*/
|
||||
function uninstall_plugin($plugin) {
|
||||
$file = plugin_basename($plugin);
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32339';
|
||||
$wp_version = '4.3-alpha-32340';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue