Ticket #44048: 44048.patch
File 44048.patch, 1.5 KB (added by , 6 years ago) |
---|
-
src/wp-admin/includes/misc.php
1691 1691 */ 1692 1692 public static function get_default_content( $descr = false ) { 1693 1693 $suggested_text = $descr ? '<strong class="privacy-policy-tutorial">' . __( 'Suggested text:' ) . ' </strong>' : ''; 1694 $content = ''; 1694 1695 1695 1696 // Start of the suggested privacy policy text. 1696 $content = 1697 '<div class="wp-suggested-text">' . 1697 $descr && $content .= 1698 '<div class="wp-suggested-text">'; 1699 $content .= 1698 1700 '<h2>' . __( 'Who we are' ) . '</h2>'; 1699 1701 $descr && $content .= 1700 1702 '<p class="privacy-policy-tutorial">' . __( 'In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.' ) . '</p>' . … … 1807 1809 $content .= 1808 1810 '<h3>' . __( 'Industry regulatory disclosure requirements' ) . '</h3>'; 1809 1811 $descr && $content .= 1810 '<p class="privacy-policy-tutorial">' . __( 'If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.' ) . '</p>'; 1811 $content .= 1812 '<p class="privacy-policy-tutorial">' . __( 'If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.' ) . '</p>' . 1812 1813 '</div>'; 1813 1814 // End of the suggested privacy policy text. 1814 1815