Neil try adding decode_entities inside the lines function for the text
and titles:


Code:
--------------------
    
        if ($num_items == 1)
        {
                $parts->{line1} = 
HTML::Entities::decode_entities($current_menu{$client}->title());
        } 
        else 
        {
                $parts->{line1} = 
HTML::Entities::decode_entities($current_menu{$client}->title()) . " (" . 
($current_line{$client}+1) . "/" . $num_items .")";
        }
  
        if ($num_items > 0) 
        {
                my $item = 
$current_menu{$client}->get_item($current_line{$client});
                $parts->{line2} = 
HTML::Entities::decode_entities($item->get_text());
  
--------------------


-- 
Triode
------------------------------------------------------------------------
Triode's Profile: http://forums.slimdevices.com/member.php?userid=17
View this thread: http://forums.slimdevices.com/showthread.php?t=18341

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins

Reply via email to