diff options
author | albert-github <albert.tests@gmail.com> | 2017-09-28 14:00:12 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2017-09-28 14:00:12 (GMT) |
commit | 32a98955299d0d4810cca40f87df8899ff774352 (patch) | |
tree | ea77db5d8eebfe9ff6612ad2f80b5c47d17a0587 | |
parent | 3aa86cee3f38627f0ee4d0aaac313f8221999819 (diff) | |
download | Doxygen-32a98955299d0d4810cca40f87df8899ff774352.zip Doxygen-32a98955299d0d4810cca40f87df8899ff774352.tar.gz Doxygen-32a98955299d0d4810cca40f87df8899ff774352.tar.bz2 |
Mark JS as freely available (regression 2)
result of extra ';' was that part of the html file was not written and thus no correct end of script and thus garbled output.
(problem was missed at first regression fix)
-rw-r--r-- | src/htmlgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 286c4dc..f80eb43 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -315,7 +315,7 @@ static QCString substituteHtmlKeywords(const QCString &s, if (disableIndex || !Config_getBool(HTML_DYNAMIC_MENUS)) { searchCssJs += "<script type=\"text/javascript\">\n" - "/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */\n"; + "/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */\n" " $(document).ready(function() { init_search(); });\n" "/* @license-end */\n" "</script>"; |