From: Rob H. <for...@us...> - 2002-02-13 08:31:12
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv31236/lib/SandWeb Modified Files: Browse.pm Log Message: changing action=file to action=browse_file Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.46 retrieving revision 1.47 diff -U2 -r1.46 -r1.47 --- Browse.pm 13 Feb 2002 08:29:50 -0000 1.46 +++ Browse.pm 13 Feb 2002 08:31:09 -0000 1.47 @@ -147,5 +147,5 @@ elsif ( $file->get_file_type() eq "Text" ) { $row_data{FILETYPE} = "text"; - $row_data{LINK} = "action=file&filename=$filename"; + $row_data{LINK} = "action=browse_file&filename=$filename"; if ($counter eq "0") { $row_data{COLOR} = 0; @@ -156,5 +156,5 @@ elsif ( $file->get_file_type() eq "Binary" ) { $row_data{FILETYPE} = "binary"; - $row_data{LINK} = "action=file&filename=$filename"; + $row_data{LINK} = "action=browse_file&filename=$filename"; if ($counter eq "0") { $row_data{COLOR} = 0; @@ -165,5 +165,5 @@ else { $row_data{FILETYPE} = "unknown"; - $row_data{LINK} = "action=file&filename=$filename"; + $row_data{LINK} = "action=browse_file&filename=$filename"; if ($counter eq "0") { $row_data{COLOR} = 0; |