[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
fu.
Files modified:
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]](https://www.dreamwidth.org/img/silk/identity/user.png)
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; --------------------------------------------------------------------------------