summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/docs.rtems.org/cat-main.html2
-rw-r--r--docs/docs.rtems.org/static/rtems/js/catalogue.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs.rtems.org/cat-main.html b/docs/docs.rtems.org/cat-main.html
index 59c60b2..a47049c 100644
--- a/docs/docs.rtems.org/cat-main.html
+++ b/docs/docs.rtems.org/cat-main.html
@@ -64,6 +64,6 @@
</div>
<!-- Load the catalogues and generate the content -->
<script type="text/javascript" src="static/rtems/js/catalogue.js"></script>
- <script> loadCatalogue("branches/master/catalogue.xml", "branches/master", "master", true); </script>
+ <script> loadCatalogue("branches/master/catalogue.xml", "branches/master", "master", true, true); </script>
@LATEST_RELEASE_SCRIPT@
<!-- catalogues-bottom -->
diff --git a/docs/docs.rtems.org/static/rtems/js/catalogue.js b/docs/docs.rtems.org/static/rtems/js/catalogue.js
index d0ac089..1734ab2 100644
--- a/docs/docs.rtems.org/static/rtems/js/catalogue.js
+++ b/docs/docs.rtems.org/static/rtems/js/catalogue.js
@@ -102,8 +102,8 @@ function paintCatalogue(xml, path, tag, doxygen, show) {
panel_handlers(tag, id, show);
}
-function loadCatalogue(catalogue, path, tag, show) {
+function loadCatalogue(catalogue, path, tag, doxygen, show) {
var f = $.get(catalogue, function(xml) {
- paintCatalogue(xml, path, tag, show);
+ paintCatalogue(xml, path, tag, doxygen, show);
}, 'xml');
}