[dw-free] Revamp /update
[commit: http://hg.dwscoalition.org/dw-free/rev/64583ddf5992]
http://bugs.dwscoalition.org/show_bug.cgi?id=2524
Inactive icons shouldn't show up in the icon browser, no they shouldn't.
Patch by
fu.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2524
Inactive icons shouldn't show up in the icon browser, no they shouldn't.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/DW/Controller/Entry.pm
-------------------------------------------------------------------------------- diff -r be4bbe0f9d6e -r 64583ddf5992 cgi-bin/DW/Controller/Entry.pm --- a/cgi-bin/DW/Controller/Entry.pm Tue Nov 01 13:48:33 2011 +0800 +++ b/cgi-bin/DW/Controller/Entry.pm Tue Nov 01 14:21:32 2011 +0800 @@ -276,7 +276,7 @@ # icons - @icons = LJ::Userpic->load_user_userpics( $u ); + @icons = grep { ! ( $_->inactive || $_->expunged ) } LJ::Userpic->load_user_userpics( $u ); @icons = LJ::Userpic->separate_keywords( \@icons ) if @icons; --------------------------------------------------------------------------------