Changeset 3244 for trunk/modules

Show
Ignore:
Timestamp:
07/31/2008 01:23:25 PM (4 months ago)
Author:
OscarB
Message:

Fixes #582 Thanks SuicidalWeasel?

Files:
1 modified

Legend:

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

    r3209 r3244  
    7272                        foreach ($filedata as $filename=>$data) 
    7373                        { 
    74                                 if ($this->pack_css) 
    75                                 { 
    76                                         $data = $this->css_compress($data); 
    77                                 } 
    78                                 $output .= $data; 
     74                            $output .= $data; 
     75                        } 
     76 
     77                        if ($this->pack_css) 
     78                        { 
     79                                $output = $this->css_compress($output); 
    7980                        } 
    8081