diff --git a/options-reading.php b/options-reading.php
index f302f70..076f332 100755
--- a/options-reading.php
+++ b/options-reading.php
@@ -124,6 +124,15 @@ else :
 <div id="front-page-warning" class="error inline"><p><?php _e( '<strong>Warning:</strong> these pages should not be the same!' ); ?></p></div>
 <?php endif; ?>
 
+<?php
+/**
+ * Since 5.2 Privacy Policy page should not be set either as Homepage or as Posts page
+ */
+$privacy_policy_page = (int) get_option( 'wp_page_for_privacy_policy' );
+
+if( $privacy_policy_page === (int)get_option( 'page_on_front' ) ||  $privacy_policy_page === (int)get_option( 'page_for_posts' ) ) : ?>
+	<div id="front-page-warning" class="error inline"><p><?php _e( '<strong>Warning:</strong> these pages should not be the same as your Privacy Policy page!' ); ?></p></div>
+<?php endif; ?>
 
 </fieldset></td>
 </tr>
