Typo in wp_upload_bits()

git-svn-id: http://svn.automattic.com/wordpress/trunk@3376 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-12-29 01:40:42 +00:00
parent 00e695e6f5
commit d789b7005e
1 changed files with 1 additions and 1 deletions

View File

@ -907,7 +907,7 @@ function wp_upload_bits($name, $type, $bits) {
while ( file_exists($upload['path'] . "/$filename") )
$filename = str_replace("$number.$ext", ++$number . ".$ext", $filename);
$new_file = $uploads['path'] . "/$filename";
$new_file = $upload['path'] . "/$filename";
$ifp = @ fopen($new_file, 'wb');
if ( ! $ifp )
return array('error' => "Could not write file $new_file.");