Make WordPress Core


Ignore:
Timestamp:
02/11/2008 09:02:44 AM (19 years ago)
Author:
matt
Message:

Blow out mem limit, slightly larger thumbnails.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r6783 r6786  
    10711071        // separate the filename into a name and extension
    10721072        $info = pathinfo($filename);
    1073         $ext = strtolower( $info['extension'] );
     1073        $ext = $info['extension'];
    10741074        $name = basename($filename, ".{$ext}");
    10751075
     
    10841084                        $ext = '';
    10851085                else
    1086                         $ext = ".$ext";
     1086                        $ext = strtolower( ".$ext" );
    10871087                $filename = $filename . $ext;
    10881088                while ( file_exists( $dir . "/$filename" ) ) {
Note: See TracChangeset for help on using the changeset viewer.