Skip to content
Snippets Groups Projects
Commit a4c1f908 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix viewing file contents broken in last commit of this file

Need to remove the quotes that were added to all files as of 3 months ago
in commit 93635124
parent c3184da5
No related branches found
No related tags found
No related merge requests found
......@@ -291,6 +291,8 @@ function nav_links(nav)
function view_file(filename)
{
if(filename[0] == '"')
filename = filename.substring(1, filename.length - 1);
header(" - " + filename);
dir = file_area.dir[http_request.dir];
writeln("[" + root_link() + "] / ");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment