remove unused mkdir_p() function. props Nazgul. fixes #3079

git-svn-id: https://develop.svn.wordpress.org/trunk@4301 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2006-10-04 04:53:48 +00:00
parent f66977080e
commit 721bb66a93
1 changed files with 0 additions and 24 deletions

View File

@ -61,30 +61,6 @@ function starify($string) {
logIO("I", $HTTP_RAW_POST_DATA);
function mkdir_p($target) {
// from php.net/mkdir user contributed notes
if (file_exists($target)) {
if (!is_dir($target)) {
return false;
} else {
return true;
}
}
// Attempting to create the directory may clutter up our display.
if (@mkdir($target)) {
return true;
}
// If the above failed, attempt to create the parent node, then try again.
if (mkdir_p(dirname($target))) {
return mkdir_p($target);
}
return false;
}
class wp_xmlrpc_server extends IXR_Server {
function wp_xmlrpc_server() {