[Jifty-commit] jifty branch, master, updated. 1.10518-98-g3b3580f

Jifty commits jifty-commit at lists.jifty.org
Tue May 29 10:41:38 EDT 2012


The branch, master has been updated
       via  3b3580f926751d5350ab877f29109cc766518d44 (commit)
      from  4b4102a49ee9090377ee384488010d7e7a1e5b5a (commit)

Summary of changes:
 lib/Jifty/Web.pm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

- Log -----------------------------------------------------------------
commit 3b3580f926751d5350ab877f29109cc766518d44
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue May 29 10:40:26 2012 -0400

    when not compressing CSS, don't use a literal \n after each CSS library.
    
    Bug introduced when I made the global cdn stuff touch non-concatenated css

diff --git a/lib/Jifty/Web.pm b/lib/Jifty/Web.pm
index d01af94..7462310 100644
--- a/lib/Jifty/Web.pm
+++ b/lib/Jifty/Web.pm
@@ -1243,7 +1243,7 @@ sub include_css {
     # if there's no trigger, 0 is returned.  if aborted/handled, undef
     # is returned.
     if ( defined $self->call_trigger( 'include_css', @_ )) {
-        $self->out( qq[<link rel="stylesheet" type="text/css" href="].Jifty->web->static("css/$_").q[" />\n] )
+        $self->out( qq[<link rel="stylesheet" type="text/css" href="].Jifty->web->static("css/$_").qq[" />\n] )
             for @{ Jifty->web->css_files };
     }
 

-----------------------------------------------------------------------


More information about the Jifty-commit mailing list