Merge "mediawiki.ui: Add right padding to .agora-field-styling()"
[lhc/web/wiklou.git] / includes / actions / RenderAction.php
index 23cae6a..c9b3f8f 100644 (file)
  * @author Timo Tijhof
  */
 
+/**
+ * Handle action=render
+ *
+ * This is a wrapper that will call Article::render().
+ *
+ * @ingroup Actions
+ */
 class RenderAction extends FormlessAction {
 
        public function getName() {
@@ -36,7 +43,5 @@ class RenderAction extends FormlessAction {
        public function show() {
 
                $this->page->render();
-
        }
-
 }