From 0483fd3e645e9e2b50ec7faa919506e87eac5a63 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Fri, 1 Apr 2011 10:40:55 +0000 Subject: [PATCH] @ignore for _copy_dir(). Props duck_. See #14484 git-svn-id: https://develop.svn.wordpress.org/trunk@17581 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/update-core.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/update-core.php b/wp-admin/includes/update-core.php index afcd7532bb..3a4b341a35 100644 --- a/wp-admin/includes/update-core.php +++ b/wp-admin/includes/update-core.php @@ -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; } -/**#@-*/ ?>