From: Rob H. <for...@us...> - 2002-02-10 09:09:24
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv30651/lib/SandWeb Modified Files: Browse.pm Log Message: current location now splits on / not space Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.43 retrieving revision 1.44 diff -U2 -r1.43 -r1.44 --- Browse.pm 5 Feb 2002 06:20:47 -0000 1.43 +++ Browse.pm 10 Feb 2002 09:09:22 -0000 1.44 @@ -86,5 +86,5 @@ $row_data{LOCATION_LINK} = "[$link]"; } - my $data = join(" ", @location_full); + my $data = join("/", @location_full); if ($location_link[$count]) { |