@ignore for _copy_dir(). Props duck_. See #14484

git-svn-id: http://svn.automattic.com/wordpress/trunk@17581 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
dd32 2011-04-01 10:40:55 +00:00
parent dfaa85ee9a
commit ca26b494da
1 changed files with 2 additions and 2 deletions

View File

@ -454,12 +454,13 @@ function update_core($from, $to) {
$wp_filesystem->delete($maintenance_file);
}
/**#@+
/**
* Copies a directory from one location to another via the WordPress Filesystem Abstraction.
* Assumes that WP_Filesystem() has already been called and setup.
*
* This is a temporary function for the 3.1 -> 3.2 upgrade only and will be removed in 3.3
*
* @ignore
* @since 3.2
* @see copy_dir()
*
@ -507,6 +508,5 @@ function _copy_dir($from, $to, $skip_list = array() ) {
}
return true;
}
/**#@-*/
?>