[dw-free] apply bare-bones style to feed account journals + set feeds to no-index
[commit: http://hg.dwscoalition.org/dw-free/rev/f2a2870f4b27]
http://bugs.dwscoalition.org/show_bug.cgi?id=1308
Block robots from indexing syndicated feeds.
Patch by
foxfirefey.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1308
Block robots from indexing syndicated feeds.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/LJ/User.pm
-------------------------------------------------------------------------------- diff -r 97dd21729f46 -r f2a2870f4b27 cgi-bin/LJ/User.pm --- a/cgi-bin/LJ/User.pm Thu Sep 10 15:21:28 2009 -0500 +++ b/cgi-bin/LJ/User.pm Thu Sep 10 15:29:42 2009 -0500 @@ -2142,6 +2142,7 @@ sub should_block_robots { sub should_block_robots { my $u = shift; + return 1 if $u->is_syndicated; return 1 if $u->prop('opt_blockrobots'); return 0 unless LJ::is_enabled( 'adult_content' ); --------------------------------------------------------------------------------