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

git-svn-id: https://develop.svn.wordpress.org/trunk@17581 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2011-04-01 10:40:55 +00:00
parent b688575c19
commit 0483fd3e64
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;
}
/**#@-*/
?>