Committer: vtroitsky
LJSUP-9462: identity_url field had been added earlier removed to fix the errorU trunk/cgi-bin/ljprotocol.pl
Modified: trunk/cgi-bin/ljprotocol.pl =================================================================== --- trunk/cgi-bin/ljprotocol.pl 2011-08-11 04:01:41 UTC (rev 19694) +++ trunk/cgi-bin/ljprotocol.pl 2011-08-11 04:47:12 UTC (rev 19695) @@ -614,7 +614,6 @@ my $i = $item->{upost}->identity; $item_data->{'identity_type'} = $i->pretty_type; $item_data->{'identity_value'} = $i->value; - $item_data->{'identity_url'} = $i->url; $item_data->{'identity_display'} = $item->{upost}->display_name; } @@ -1027,7 +1026,6 @@ my $i = $users->{ $_->{posterid} }->identity; $_->{'identity_type'} = $i->pretty_type; $_->{'identity_value'} = $i->value; - $_->{'identity_url'} = $i->url; $_->{'identity_display'} = $users->{ $_->{posterid} }->display_name; } delete $_->{posterid}; @@ -3207,7 +3205,6 @@ my $i = $uposter->identity; $evt->{'identity_type'} = $i->pretty_type; $evt->{'identity_value'} = $i->value; - $evt->{'identity_url'} = $i->url; $evt->{'identity_display'} = $uposter->display_name; } } @@ -3499,7 +3496,6 @@ my $i = $row->identity; $added->{'identity_type'} = $i->pretty_type; $added->{'identity_value'} = $i->value; - $added->{'identity_url'} = $i->url; $added->{'identity_display'} = $row->display_name; } $added->{"type"} = { @@ -3860,8 +3856,7 @@ my $i = $u->identity; $r->{'identity_type'} = $i->pretty_type; $r->{'identity_value'} = $i->value; - $r->{'identity_url'} = $i->url; - $r->{'identity_display'} = $u->display_name; + $r->{'identity_display'} = $u->display_name; } if ($opts->{'includebdays'} &&