Show
Ignore:
Timestamp:
02/26/2008 05:42:45 AM (9 months ago)
Author:
Geert
Message:
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/media/controllers/media.php

    r2085 r2171  
    5959 
    6060                $mimetype = config::item('mimes.css'); 
    61                 $mimetype = (isset($mimetype[0])) ? $mimetype[0] : 'text/stylesheet'; 
     61                $mimetype = isset($mimetype[0]) ? $mimetype[0] : 'text/stylesheet'; 
    6262 
    6363                $this->use_cache AND $data = $this->cache->get('media.css.'.$querystr); 
     
    123123 
    124124                $mimetype = Config::item('mimes.js'); 
    125                 $mimetype = (isset($mimetype[0])) ? $mimetype[0] : 'text/javascript'; 
     125                $mimetype = isset($mimetype[0]) ? $mimetype[0] : 'text/javascript'; 
    126126 
    127127                $this->use_cache AND $data = $this->cache->get('media.js.'.$filename);