[dw-free] If journal title == user name, name doesn't display on profile
[commit: http://hg.dwscoalition.org/dw-free/rev/e051c4037beb]
http://bugs.dwscoalition.org/show_bug.cgi?id=1362
Always print name.
Patch by
kareila.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1362
Always print name.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/DW/Logic/ProfilePage.pm
-------------------------------------------------------------------------------- diff -r cae657bb4c2e -r e051c4037beb cgi-bin/DW/Logic/ProfilePage.pm --- a/cgi-bin/DW/Logic/ProfilePage.pm Tue Jun 30 13:57:14 2009 +0000 +++ b/cgi-bin/DW/Logic/ProfilePage.pm Wed Jul 01 15:11:39 2009 +0000 @@ -353,10 +353,8 @@ sub _basic_info_display_name { text => "<img src='$LJ::IMGPREFIX/xml.gif' width='36' height='14' align='absmiddle' border='0' alt=\"" . LJ::Lang::ml( '.syn.xml' ) . "\" /></a>", }; } else { - unless ( $name eq $u->prop( 'journaltitle' ) ) { - $ret->[0] = LJ::Lang::ml( '.label.name' ); - $ret->[1] = $name; - } + $ret->[0] = LJ::Lang::ml( '.label.name' ); + $ret->[1] = $name; } return $ret; --------------------------------------------------------------------------------