Clean up SoneTemplatePage’s constructors
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / pages / BookmarksPage.kt
index fbfc7d3..8d33977 100644 (file)
@@ -10,7 +10,8 @@ import net.pterodactylus.util.template.TemplateContext
 /**
  * Page that lets the user browse all his bookmarked posts.
  */
-class BookmarksPage(template: Template, webInterface: WebInterface): SoneTemplatePage("bookmarks.html", template, "Page.Bookmarks.Title", webInterface) {
+class BookmarksPage(template: Template, webInterface: WebInterface) :
+               SoneTemplatePage("bookmarks.html", webInterface, template, "Page.Bookmarks.Title") {
 
        override fun handleRequest(freenetRequest: FreenetRequest, templateContext: TemplateContext) {
                webInterface.core.bookmarkedPosts.let { posts ->