Changeset 6783

Show
Ignore:
Timestamp:
02/11/08 08:02:01 (10 months ago)
Author:
matt
Message:

Lowercase extensions too, dynamically change when we try to create thumbnails by memory limit.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/includes/image.php

    r6726 r6783  
    151151        $metadata['file'] = $file; 
    152152 
    153         $max = apply_filters( 'wp_thumbnail_creation_size_limit', 3 * 1024 * 1024, $attachment_id, $file ); 
     153        $max = apply_filters( 'wp_thumbnail_creation_size_limit', abs( inval( WP_MEMORY_LIMIT ) ) * 1024 * 1024, $attachment_id, $file ); 
    154154 
    155155        if ( $max < 0 || $metadata['width'] * $metadata['height'] < $max ) { 
  • trunk/wp-includes/functions.php

    r6780 r6783  
    10711071    // separate the filename into a name and extension 
    10721072    $info = pathinfo($filename); 
    1073     $ext = $info['extension']
     1073    $ext = strtolower( $info['extension'] )
    10741074    $name = basename($filename, ".{$ext}"); 
    10751075