Przeglądaj źródła

Make path of table entry relative to parent directory. Fixes bug introduced when source path changed to be relative to path argument.

[SVN r8513]
Beman Dawes 25 lat temu
rodzic
commit
3e6a9c38bc
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      libs/regression.cpp

+ 1 - 1
libs/regression.cpp

@@ -197,7 +197,7 @@ void do_tests(std::ostream & out,
     std::cout << "*** " << file << " ***\n\n";
 
     out << "<tr>\n"
-        << "<td><a href=\"" << file << "\">" << file << "</a></td>\n"
+        << "<td><a href=\"../" << file << "\">" << file << "</a></td>\n"
         << "<td>" << type << "</td>\n";
 
     for(ForwardIterator it = firstcompiler; it != lastcompiler; ++it) {

粤ICP备19079148号