Make WordPress Core


Ignore:
Timestamp:
11/13/2008 06:22:00 PM (15 years ago)
Author:
azaozz
Message:

Store uploads according to the parent post date when using year/month sub-directories

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/file.php

    r9612 r9663  
    214214 * @return array On success, returns an associative array of file attributes. On failure, returns $overrides['upload_error_handler'](&$file, $message ) or array( 'error'=>$message ).
    215215 */
    216 function wp_handle_upload( &$file, $overrides = false ) {
     216function wp_handle_upload( &$file, $overrides = false, $time = null ) {
    217217    // The default error handler.
    218218    if (! function_exists( 'wp_handle_upload_error' ) ) {
     
    282282
    283283    // A writable uploads dir will pass this test. Again, there's no point overriding this one.
    284     if ( ! ( ( $uploads = wp_upload_dir() ) && false === $uploads['error'] ) )
     284    if ( ! ( ( $uploads = wp_upload_dir($time) ) && false === $uploads['error'] ) )
    285285        return $upload_error_handler( $file, $uploads['error'] );
    286286
Note: See TracChangeset for help on using the changeset viewer.