]> git.ipfire.org Git - ipfire.org.git/blobdiff - src/web/wiki.py
wiki: Remove author from search results
[ipfire.org.git] / src / web / wiki.py
index bce58ca1e0e614443c73df4737bde3234f93c1f6..76433dc73dda3d4e6c76e98203f2b77164251baf 100644 (file)
@@ -259,9 +259,11 @@ class WikiDiffModule(ui_modules.UIModule):
 
 
 class WikiListModule(ui_modules.UIModule):
-       def render(self, pages, link_revision=False, show_breadcrumbs=True, show_changes=False):
+       def render(self, pages, link_revision=False, show_breadcrumbs=True,
+                       show_author=True, show_changes=False):
                return self.render_string("wiki/modules/list.html", link_revision=link_revision,
-                       pages=pages, show_breadcrumbs=show_breadcrumbs, show_changes=show_changes)
+                       pages=pages, show_breadcrumbs=show_breadcrumbs,
+                       show_author=show_author, show_changes=show_changes)
 
 
 class WikiNavbarModule(ui_modules.UIModule):