Ignore:
Timestamp:
12/15/09 12:31:37 (15 years ago)
Author:
amuller
Message:

Ticket #597 - Melhoria do FM, Imagem padrão ao buscar thumbnail

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/filemanager/inc/upload.php

    r1829 r1838  
    3636                break; 
    3737        default: 
    38                 return; 
     38                return false; 
    3939        } 
    4040        $max_resolution = 48; 
     
    149149                                        { 
    150150                                                $content = create_summaryImage($_FILES['upload_file']['tmp_name'][$i]); 
    151                                                 $bo->vfs->set_summary(array( 
    152                                                 'string'=> $_FILES['upload_file']['name'][$i], 
    153                                                 'relatives' => array(RELATIVE_ALL), 
    154                                                 'summary'=> $content 
    155                                         )); 
     151                                                if ($content){ 
     152                                                        $bo->vfs->set_summary(array( 
     153                                                        'string'=> $_FILES['upload_file']['name'][$i], 
     154                                                        'relatives' => array(RELATIVE_ALL), 
     155                                                        'summary'=> $content 
     156                                                        )); 
     157                                                } 
     158 
    156159                                        } 
    157160                                } 
Note: See TracChangeset for help on using the changeset viewer.