From 2ef75b7f062d69729e40bf6586a335919c6ffa6e Mon Sep 17 00:00:00 2001 From: Michal Vaner Date: Sun, 31 Aug 2008 20:13:27 +0200 Subject: [PATCH] Mark the item status in more obvious way --- PciIds/Html/List.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PciIds/Html/List.pm b/PciIds/Html/List.pm index 91dc1d7..730f876 100644 --- a/PciIds/Html/List.pm +++ b/PciIds/Html/List.pm @@ -30,7 +30,10 @@ sub list( $$$$ ) { print "
\n"; print ""; genPath( $req, $address, 0 ); - print htmlDiv( 'name', '

Name: '.encode( $name ) ) if defined( $name ); + if( defined $name ) { + print '

'.encode( $id ).'

'; + print htmlDiv( 'name', '

Name: '.encode( $name ) ); + } print htmlDiv( 'note', '

Note: '.encode( $note ) ) if defined( $note ); my $diss = 0; my $history; -- 2.39.2