Skip to content

Commit

Permalink
Fix problem with unknown escape sequence.
Browse files Browse the repository at this point in the history
FairRunOnline.cxx: There was a problem with a wrong escape sequence. On most systems this was ignored and only a warning was generated,
                   but on Mac OSX 10.6 it was an error. Don't know how this comes in. All other occurences of '/' are correct.
  • Loading branch information
fuhlig1 committed Mar 20, 2015
1 parent bece34e commit 47bc1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/steer/FairRunOnline.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ void FairRunOnline::GenerateHtml()
<< "<head>" << endl
<< "<title>Read a ROOT file</title>" << endl
<< "<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge; text/html\">" << endl
<< "<script type=\"text/javascript\" src=\"http:\/\/root.cern.ch/js/3.2/scripts/JSRootCore.js\"></script>" << endl
<< "<script type=\"text/javascript\" src=\"http://root.cern.ch/js/3.2/scripts/JSRootCore.js\"></script>" << endl
<< "</head>" << endl
<< "<body onload=\"JSROOT.BuildSimpleGUI()\">" << endl
<< "<div id=\"simpleGUI\"" << endl
Expand Down

0 comments on commit 47bc1a6

Please sign in to comment.