Update of /cvsroot/sandweb/sandweb/lib/SandWeb
In directory usw-pr-cvs1:/tmp/cvs-serv29764/lib/SandWeb
Modified Files:
Browse.pm
Log Message:
oops, last checking broke "Current location" bar. this fixes it but good!
Index: Browse.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v
retrieving revision 1.39
retrieving revision 1.40
diff -U2 -r1.39 -r1.40
--- Browse.pm 2002/02/02 09:30:50 1.39
+++ Browse.pm 2002/02/02 09:35:31 1.40
@@ -81,6 +81,7 @@
foreach my $link (@location_link) {
my %row_data;
- next unless ( $link );
- $row_data{LOCATION_LINK} = "[$link]";
+ if ( $link ) {
+ $row_data{LOCATION_LINK} = "[$link]";
+ }
my $data = join(" ", @location_full);
|