[dw-free] Lacks function to return a list of sorted trust groups
[commit: http://hg.dwscoalition.org/dw-free/rev/cb26f5eed563]
http://bugs.dwscoalition.org/show_bug.cgi?id=1616
Slight tweak to be safer: return blank string instead of undef (no
functional change)
Patch by
kareila.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1616
Slight tweak to be safer: return blank string instead of undef (no
functional change)
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/LJ/User.pm
-------------------------------------------------------------------------------- diff -r aecbbe85bdc7 -r cb26f5eed563 cgi-bin/LJ/User.pm --- a/cgi-bin/LJ/User.pm Wed Sep 02 17:26:27 2009 +0000 +++ b/cgi-bin/LJ/User.pm Wed Sep 02 17:45:53 2009 +0000 @@ -3620,7 +3620,7 @@ sub security_group_display { } } - return join( ', ', @ret ) if @ret; + return join( ', ', @ret ); } --------------------------------------------------------------------------------