From: Rob H. <for...@us...> - 2002-02-02 09:30:53
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv28972/lib/SandWeb Modified Files: Browse.pm Log Message: * made "Current location" bar a little more readable by lightening the background although I still don't think it's *quite* right, it's better * put [] around directory names in "Current location" bar, makes it alot easier to read especially when there are dirs with spaces in them Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.38 retrieving revision 1.39 diff -U2 -r1.38 -r1.39 --- Browse.pm 2002/02/02 09:15:08 1.38 +++ Browse.pm 2002/02/02 09:30:50 1.39 @@ -81,5 +81,6 @@ foreach my $link (@location_link) { my %row_data; - $row_data{LOCATION_LINK} = "$link"; + next unless ( $link ); + $row_data{LOCATION_LINK} = "[$link]"; my $data = join(" ", @location_full); |