[Jifty-commit] r6569 - in jifty/trunk: lib/Jifty

Jifty commits jifty-commit at lists.jifty.org
Mon Mar 9 14:06:35 EDT 2009


Author: alexmv
Date: Mon Mar  9 14:06:35 2009
New Revision: 6569

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Web.pm

Log:
 r43084 at kohr-ah:  chmrr | 2009-03-09 14:05:58 -0400
 Include all css_files when not using compressed css


Modified: jifty/trunk/lib/Jifty/Web.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Web.pm	(original)
+++ jifty/trunk/lib/Jifty/Web.pm	Mon Mar  9 14:06:35 2009
@@ -1094,8 +1094,8 @@
     # is returned.
     defined $self->call_trigger( 'include_css', @_ ) or return '';
 
-    $self->out( '<link rel="stylesheet" type="text/css" '
-            . 'href="/static/css/main.css" />' );
+    $self->out( qq[<link rel="stylesheet" type="text/css" href="/static/css/$_" />\n] )
+        for @{ Jifty->web->css_files };
 
     return '';
 }


More information about the Jifty-commit mailing list