Skip to content

Commit

Permalink
Fixes in new compress class
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Feb 5, 2014
1 parent 8a62cd3 commit 3b7ae5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Core/lib/Horde/Themes/Css/Compress.php
Expand Up @@ -21,7 +21,7 @@
* @package Core
* @since 2.12.0
*/
class Horde_Themes_Css
class Horde_Themes_Css_Compress
{
/**
* Loads CSS files, cleans up the input (and compresses), and concatenates
Expand Down Expand Up @@ -56,7 +56,7 @@ public function compress($css)
foreach ($css_parser->doc->getContents() as $val) {
if ($val instanceof Sabberworm\CSS\Property\Import) {
$ob = Horde_Themes_Element::fromUri($path . $val->getLocation()->getURL()->getString());
$out .= $this->loadCssFiles(array(array(
$out .= $this->compress(array(array(
'app' => null,
'fs' => $ob->fs,
'uri' => $ob->uri
Expand Down

0 comments on commit 3b7ae5e

Please sign in to comment.