diff --git a/src/addon/mod/forum/components/post/addon-mod-forum-post.html b/src/addon/mod/forum/components/post/addon-mod-forum-post.html
index 8918cadb5..cb8ffc1b3 100644
--- a/src/addon/mod/forum/components/post/addon-mod-forum-post.html
+++ b/src/addon/mod/forum/components/post/addon-mod-forum-post.html
@@ -51,6 +51,10 @@
{{ 'addon.mod_forum.message' | translate }}
+
+ {{ 'addon.mod_forum.privatereply' | translate }}
+
+
@@ -58,10 +62,6 @@
0" [files]="replyData.files" [maxSize]="forum.maxbytes" [maxSubmissions]="forum.maxattachments" [component]="component" [componentId]="forum.cmid" [allowOffline]="true">
-
- {{ 'addon.mod_forum.privatereply' | translate }}
-
-
diff --git a/src/addon/mod/forum/components/post/post.ts b/src/addon/mod/forum/components/post/post.ts
index 92251ae5c..581c7eefe 100644
--- a/src/addon/mod/forum/components/post/post.ts
+++ b/src/addon/mod/forum/components/post/post.ts
@@ -122,7 +122,7 @@ export class AddonModForumPostComponent implements OnInit, OnDestroy {
this.originalData.isprivatereply = this.replyData.isprivatereply;
// Show advanced fields if any of them has not the default value.
- this.advanced = this.replyData.files.length > 0 || this.originalData.isprivatereply;
+ this.advanced = this.replyData.files.length > 0;
}
/**