We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f79566 + 4fed8ed commit c2f87fbCopy full SHA for c2f87fb
1 file changed
lib/public/AppFramework/Http/Template/PublicTemplateResponse.php
@@ -159,4 +159,16 @@ public function setFooterVisible(bool $visible = false) {
159
public function getFooterVisible(): bool {
160
return $this->footerVisible;
161
}
162
+
163
+ /**
164
+ * @return string
165
+ * @since 14.0.0
166
+ */
167
+ public function render(): string {
168
+ $params = array_merge($this->getParams(), [
169
+ 'template' => $this,
170
+ ]);
171
+ $this->setParams($params);
172
+ return parent::render();
173
+ }
174
0 commit comments