fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2010-07-30 01:43 pm

[dw-free] sitefeeds style stylesheet not being applied

[commit: http://hg.dwscoalition.org/dw-free/rev/4620690370e7]

http://bugs.dwscoalition.org/show_bug.cgi?id=2924

Special-case the handling of a stylesheet for the sitefeeds style here.

Patch by [personal profile] fu.

Files modified:
  • cgi-bin/LJ/S2.pm
--------------------------------------------------------------------------------
diff -r ea4f943ae4e9 -r 4620690370e7 cgi-bin/LJ/S2.pm
--- a/cgi-bin/LJ/S2.pm	Thu Jul 29 09:11:29 2010 -0700
+++ b/cgi-bin/LJ/S2.pm	Fri Jul 30 06:43:15 2010 -0700
@@ -54,7 +54,8 @@ sub make_journal
 
     if ($view eq "res") {
         if ($opts->{'pathextra'} =~ m!/(\d+)/stylesheet$!) {
-            $styleid = $1;
+            $styleid = $1 unless $styleid eq "sitefeeds";
+
             $entry = [ qw( Page::print_default_stylesheet() print_stylesheet() Page::print_theme_stylesheet() ) ];
             $opts->{'contenttype'} = 'text/css';
             $use_modtime = 1;
--------------------------------------------------------------------------------